/* 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 AuthRequestMagicLink400Response */ export interface AuthRequestMagicLink400Response { /** * * @type {string} * @memberof AuthRequestMagicLink400Response */ error?: string; } /** * Check if a given object implements the AuthRequestMagicLink400Response interface. */ export function instanceOfAuthRequestMagicLink400Response(value: object): value is AuthRequestMagicLink400Response { return true; } export function AuthRequestMagicLink400ResponseFromJSON(json: any): AuthRequestMagicLink400Response { return AuthRequestMagicLink400ResponseFromJSONTyped(json, false); } export function AuthRequestMagicLink400ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthRequestMagicLink400Response { if (json == null) { return json; } return { 'error': json['error'] == null ? undefined : json['error'], }; } export function AuthRequestMagicLink400ResponseToJSON(value?: AuthRequestMagicLink400Response | null): any { if (value == null) { return value; } return { 'error': value['error'], }; }