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