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