/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface MFAUpdateDeviceRequest */ export interface MFAUpdateDeviceRequest { /** * Whether or not this is the default MFA device for the user * @type {boolean} * @memberof MFAUpdateDeviceRequest */ _default: boolean; } export declare function MFAUpdateDeviceRequestFromJSON(json: any): MFAUpdateDeviceRequest; export declare function MFAUpdateDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFAUpdateDeviceRequest; export declare function MFAUpdateDeviceRequestToJSON(value?: MFAUpdateDeviceRequest | null): any;