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