/** * Fabric 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 */ export declare const Store: { readonly AppStore: "app_store"; readonly PlayStore: "play_store"; readonly Stripe: "stripe"; readonly Promotional: "promotional"; }; export type Store = typeof Store[keyof typeof Store]; export declare function instanceOfStore(value: any): boolean; export declare function StoreFromJSON(json: any): Store; export declare function StoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): Store; export declare function StoreToJSON(value?: Store | null): any; export declare function StoreToJSONTyped(value: any, ignoreDiscriminator: boolean): Store;