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