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