Home » NOVA Token » NOVA Token Service Model
ch.voev.nova.token.servicemodel)Types / Enumerations:
Request object to register a token.
Properties / Associations
| Name | Type | Multiplicity | Constraints | Description |
|---|---|---|---|---|
tokenID | TokenID | 1..1 | Token that should be registered. | |
customerID | TKID | 0..1 | ID of the customer to which the token belongs to. In case that the customer ID is not provided an "anonymous" customer ID will be created. | |
externalReference | ExternalReferenceID | 0..1 | In addition to the token itself it is also possible to provide an external reference for a token. This reference can be used by customer support to query for tokens. |
Type represents a token. A token links a token ID (often generated by some hardware) and a customer.
Properties / Associations
| Name | Type | Multiplicity | Constraints | Description |
|---|---|---|---|---|
customerID | TKID | 1..1 | Customer which is linked with the token. This can be a "real / known" customer or an anonymous one. | |
tokenID | TokenID | 1..1 | ID of the token | |
lastUsage | java.time.OffsetDateTime | 1..1 | Last usage of the token. | |
externalReference | ExternalReferenceID | 0..1 | In addition to the token itself it is also possible to provide an external reference for a token. This reference can be used by customer support to query for tokens. |
Type represents a query for tokens.
Properties / Associations
| Name | Type | Multiplicity | Constraints | Description |
|---|---|---|---|---|
startsWith | String | 0..1 | Query parameter to query for tokens whose external reference starts with the passed value. | |
endsWith | String | 1..1 | Query parameter to query for tokens whose external reference ends with the passed value. |