/** * 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 AuthCreateSubscriptionRequest */ export interface AuthCreateSubscriptionRequest { /** * The subscription lookup key (from subscription tiers) * @type {string} * @memberof AuthCreateSubscriptionRequest */ subscriptionKey: string; /** * URL to redirect back to after successful subscription * @type {string} * @memberof AuthCreateSubscriptionRequest */ drawUrl: string; } /** * Check if a given object implements the AuthCreateSubscriptionRequest interface. */ export declare function instanceOfAuthCreateSubscriptionRequest(value: object): value is AuthCreateSubscriptionRequest; export declare function AuthCreateSubscriptionRequestFromJSON(json: any): AuthCreateSubscriptionRequest; export declare function AuthCreateSubscriptionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthCreateSubscriptionRequest; export declare function AuthCreateSubscriptionRequestToJSON(value?: AuthCreateSubscriptionRequest | null): any;