UNPKG
@mollie/api-client
Version:
beta (4.4.0-rc.1)
latest (4.5.0)
4.5.0
4.4.0
4.4.0-rc.1
4.4.0-rc.0
4.3.3
4.3.2
4.3.1
4.3.0
4.2.0
4.1.0
4.0.0
4.0.0-beta.0
3.7.0
3.7.0-beta.2
3.7.0-beta.1
3.6.0
3.6.0-beta.3
3.6.0-beta.2
3.6.0-beta.1
3.5.1
3.5.0
3.5.0-beta.1
3.4.0
3.3.0
3.2.4
3.2.3
3.2.2
3.2.0
3.2.0-beta.3
3.2.0-beta.2
3.2.0-beta.1
3.1.0
3.0.0
3.0.0-beta.1
2.3.2
2.3.1
2.3.0
2.2.0
2.1.2
2.1.1
2.1.0
2.0.3
2.0.1
2.0.0
Official Mollie API client for Node
github.com/mollie/mollie-api-node
mollie/mollie-api-node
@mollie/api-client
/
dist
/
types
/
data
/
Model.d.ts
12 lines
(11 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
Maybe
from
'../types/Maybe'
;
export
default
interface
Model
<R
extends
string
, I
extends
Maybe
<
string
> =
string
> {
/** * Indicates the kind of entity this is. */
resource
: R;
/** * The unique identifier for this entity. */
id
: I; }