/* tslint:disable */ /* eslint-disable */ /** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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. */ import { mapValues } from '../runtime'; /** * * @export * @interface AuthRequestMagicLink200Response */ export interface AuthRequestMagicLink200Response { /** * * @type {string} * @memberof AuthRequestMagicLink200Response */ message?: string; } /** * Check if a given object implements the AuthRequestMagicLink200Response interface. */ export function instanceOfAuthRequestMagicLink200Response(value: object): value is AuthRequestMagicLink200Response { return true; } export function AuthRequestMagicLink200ResponseFromJSON(json: any): AuthRequestMagicLink200Response { return AuthRequestMagicLink200ResponseFromJSONTyped(json, false); } export function AuthRequestMagicLink200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthRequestMagicLink200Response { if (json == null) { return json; } return { 'message': json['message'] == null ? undefined : json['message'], }; } export function AuthRequestMagicLink200ResponseToJSON(value?: AuthRequestMagicLink200Response | null): any { if (value == null) { return value; } return { 'message': value['message'], }; }