Interface describing the data available on the Redeem Ticket screen.

interface RedeemTicketMembers {
    branding: BrandingMembers;
    client: ClientMembers;
    organization: OrganizationMembers;
    prompt: PromptMembers;
    screen: ScreenMembers;
    tenant: TenantMembers;
    transaction: TransactionMembers;
    untrustedData: UntrustedDataMembers;
    user: UserMembers;
    continue(payload?: CustomOptions): Promise<void>;
}

Hierarchy

  • BaseMembers
    • RedeemTicketMembers

Implemented by

Properties

branding: BrandingMembers
organization: OrganizationMembers
transaction: TransactionMembers
untrustedData: UntrustedDataMembers

Methods

  • Performs the default action on the redeem-ticket screen, which usually involves continuing the flow.

    Parameters

    • Optionalpayload: CustomOptions

      Optional custom options to include with the request.

    Returns Promise<void>

    A promise that resolves when the action is complete.

    If the operation fails.

    import RedeemTicket from '@auth0/auth0-acul-js/redeem-ticket';

    const redeemTicket = new RedeemTicket();
    await redeemTicket.continue();