PublishTokenType

@Serializable
data class PublishTokenType(val uid: String? = null, val type: String? = null, val issuer: String? = null, val groupId: String? = null, val visualNumber: String? = null)

Defines the set of values that identify a token to which a Location might be published. At least one of the following fields shall be set: uid, visualNumber, or groupId. When uid is set, type shall also be set. When visualNumber is set, issuer shall also be set.

Parameters

uid

Unique ID by which this Token can be identified.

type

Type of token

issuer

Issuing company, most of the times the name of the company printed on the token (RFID card), not necessarily the eMSP.

groupId

This ID groups a couple of tokens. This can be used to make two or more tokens work as one.

visualNumber

Visual readable number/identification as printed on the Token (RFID card).

Constructors

Link copied to clipboard
constructor(uid: String? = null, type: String? = null, issuer: String? = null, groupId: String? = null, visualNumber: String? = null)

Properties

Link copied to clipboard
val groupId: String? = null
Link copied to clipboard
val issuer: String? = null
Link copied to clipboard
val type: String? = null
Link copied to clipboard
val uid: String? = null
Link copied to clipboard
val visualNumber: String? = null