/** * 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 TestAccountResponse */ export interface TestAccountResponse { /** * One-time verification code generated for the test account * @type {string} * @memberof TestAccountResponse */ code: string; /** * Email address associated with the test account * @type {string} * @memberof TestAccountResponse */ email?: string; /** * Phone number associated with the test account * @type {string} * @memberof TestAccountResponse */ phone?: string; } export declare function TestAccountResponseFromJSON(json: any): TestAccountResponse; export declare function TestAccountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TestAccountResponse; export declare function TestAccountResponseToJSON(value?: TestAccountResponse | null): any;