メインコンテンツへスキップ
redeem-ticket 画面の機能を実装するコンストラクターです。
Example
import RedeemTicket from '@auth0/auth0-acul-js/redeem-ticket';

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

コンストラクター

RedeemTicket
Constructor
RedeemTicket クラスの新しいインスタンスを生成します。

プロパティ

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user
screenIdentifier
string

メソッド

continue
Promise<void>
redeem-ticket 画面で既定のアクションを実行し、通常はフローを継続します。アクションが完了したときに解決される Promise です。

Throws

操作が失敗した場合にスローされます。
Example
import RedeemTicket from '@auth0/auth0-acul-js/redeem-ticket';

const redeemTicket = new RedeemTicket();
await redeemTicket.continue();
getErrors
コンテキストからトランザクションのエラー配列を取得します。存在しない場合は空の配列を返します。トランザクションコンテキストから取得される Error オブジェクトの配列です。