Skip to main content
Interface describing the members of the Device Code Confirmation screen.
Example
export interface DeviceCodeConfirmationMembers extends BaseMembers {
  screen: ScreenMembersOnDeviceCodeConfirmation;

  /**
   * Confirms the device code.
   * @param payload Optional custom options to include with the request.
   */
  confirm(payload?: CustomOptions): Promise<void>;

  /**
   * Cancels the device code flow.
   * @param payload Optional custom options to include with the request.
   */
  cancel(payload?: CustomOptions): Promise<void>;
}

Properties

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user

Methods

cancel
Promise<void>
Cancels the device code flow.
confirm
Promise<void>
Confirms the device code.