/* tslint:disable */ /* eslint-disable */ /** * 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 const Store = { AppStore: 'app_store', PlayStore: 'play_store', Stripe: 'stripe', Promotional: 'promotional' } as const; export type Store = typeof Store[keyof typeof Store]; export function instanceOfStore(value: any): boolean { for (const key in Store) { if (Object.prototype.hasOwnProperty.call(Store, key)) { if (Store[key as keyof typeof Store] === value) { return true; } } } return false; } export function StoreFromJSON(json: any): Store { return StoreFromJSONTyped(json, false); } export function StoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): Store { return json as Store; } export function StoreToJSON(value?: Store | null): any { return value as any; } export function StoreToJSONTyped(value: any, ignoreDiscriminator: boolean): Store { return value as Store; }