/** * 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 AuthCreateSubscription200Response */ export interface AuthCreateSubscription200Response { /** * Stripe checkout session ID * @type {string} * @memberof AuthCreateSubscription200Response */ sessionId?: string; /** * URL to redirect user to Stripe checkout * @type {string} * @memberof AuthCreateSubscription200Response */ checkoutUrl?: string; } /** * Check if a given object implements the AuthCreateSubscription200Response interface. */ export declare function instanceOfAuthCreateSubscription200Response(value: object): value is AuthCreateSubscription200Response; export declare function AuthCreateSubscription200ResponseFromJSON(json: any): AuthCreateSubscription200Response; export declare function AuthCreateSubscription200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthCreateSubscription200Response; export declare function AuthCreateSubscription200ResponseToJSON(value?: AuthCreateSubscription200Response | null): any;