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
Was this page helpful?