Interface ILinkActivation

A link activation record that is configured to issue wallet cards for a program.

interface ILinkActivation {
    accesses: number;
    attributes: ILinkActivationAttribute[];
    brandId: number;
    captchaEnabled: boolean;
    emissions: number;
    endDate: string | Date;
    externalIdentifier: string;
    linkActivationId: number;
    name: string;
    passesLimit: number;
    programId: number;
    templateTierId?: number;
    tenantId: number;
}

Properties

accesses: number

The number of times this link activation has been accessed

The attributes that are associated to the link activation.

brandId: number

The brand unique identifier.

captchaEnabled: boolean

Is captcha enabled for this link activation record.

emissions: number

The number of times this link activation has issued a card.

endDate: string | Date

The expiration date of this link activation.

externalIdentifier: string

An external identifier that is generated for this link activation.

linkActivationId: number

The link activation unique identifier.

name: string

A name for the link activation record.

passesLimit: number

The number of times this link activation can be used to issue a card.

programId: number

The program unique identifier.

templateTierId?: number

The tier identifier to issue this link activation for, if defined.

tenantId: number

The tenant unique identifier.