Use this file to discover all available pages before exploring further.
Interface describing the members of the Device Code Activation screen.
Example
export interface DeviceCodeActivationMembers extends BaseMembers { /** * Submits the device code entered by the user. * This action is triggered when the user enters the code displayed on their device and submits the form. * * @param {object} payload - An object containing the code entered by the user and any custom payload. * @param {string} payload.code - The device code entered by the user. * * @returns {Promise<void>} A promise that resolves when the code is successfully submitted. * Rejects with an error if the submission fails. */ continue(payload: ContinueOptions): Promise<void>;}
Submits the device code entered by the user.
This action is triggered when the user enters the code displayed on their device and submits the form.A promise that resolves when the code is successfully submitted.
Rejects with an error if the submission fails.