@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface RedeemTicketMembers

    Interface describing the data available on the Redeem Ticket screen.

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

    Hierarchy (View Summary)

    Index

    Properties

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

    Methods

    • Returns Error[]

    • 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();