@gradientedge/commercetools-utils
    Preparing search index...

    Interface CustomerToken

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

    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.

    invalidateOlderTokens: boolean

    If true, all tokens issued previously for the Customer will be invalidated.

    lastModifiedAt?: string

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

    value: string

    Value of the token.