interface CustomerToken {
    createdAt: string;
    customerId: string;
    expiresAt: string;
    id: string;
    lastModifiedAt?: string;
    value: string;
}

Properties

createdAt: string

Date and time (UTC) the token was initially created.

customerId: string

The id of the Customer.

expiresAt: string

Date and time (UTC) the token expires.

id: string

Unique identifier of the token.

lastModifiedAt?: string

When the token is created, lastModifiedAt is set to createdAt.

value: string

Value of the token.

Generated using TypeDoc