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