Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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>; }
Show Parameters