/** * 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 InitEmailAuthResponse */ export interface InitEmailAuthResponse { /** * * @type {string} * @memberof InitEmailAuthResponse */ turnkeyUserId: string; /** * * @type {string} * @memberof InitEmailAuthResponse */ turnkeyApiKeyId: string; } export declare function InitEmailAuthResponseFromJSON(json: any): InitEmailAuthResponse; export declare function InitEmailAuthResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): InitEmailAuthResponse; export declare function InitEmailAuthResponseToJSON(value?: InitEmailAuthResponse | null): any;