/** * 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. */ import type { IntegrationInstallationFlow } from './IntegrationInstallationFlow'; /** * * @export * @interface StoreListingIntegrationDataInstallation */ export interface StoreListingIntegrationDataInstallation { /** * * @type {boolean} * @memberof StoreListingIntegrationDataInstallation */ 'availableSoon'?: boolean; /** * * @type {IntegrationInstallationFlow} * @memberof StoreListingIntegrationDataInstallation */ 'installationFlow'?: IntegrationInstallationFlow; /** * * @type {boolean} * @memberof StoreListingIntegrationDataInstallation */ 'showPrivacyConfirmation'?: boolean; /** * * @type {boolean} * @memberof StoreListingIntegrationDataInstallation */ 'showAiUsageWarning'?: boolean; /** * * @type {boolean} * @memberof StoreListingIntegrationDataInstallation */ 'multipleInstallationsAllowed'?: boolean; } /** * Check if a given object implements the StoreListingIntegrationDataInstallation interface. */ export declare function instanceOfStoreListingIntegrationDataInstallation(value: object): value is StoreListingIntegrationDataInstallation; export declare function StoreListingIntegrationDataInstallationFromJSON(json: any): StoreListingIntegrationDataInstallation; export declare function StoreListingIntegrationDataInstallationFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingIntegrationDataInstallation; export declare function StoreListingIntegrationDataInstallationToJSON(json: any): StoreListingIntegrationDataInstallation; export declare function StoreListingIntegrationDataInstallationToJSONTyped(value?: StoreListingIntegrationDataInstallation | null, ignoreDiscriminator?: boolean): any;