/** * 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 { StoreListingIntegrationData } from './StoreListingIntegrationData'; import type { StoreListingCapability } from './StoreListingCapability'; import type { StoreListingPermission } from './StoreListingPermission'; import type { StoreListingIntegrationAvailabilityByTier } from './StoreListingIntegrationAvailabilityByTier'; import type { StoreListingPreviewImage } from './StoreListingPreviewImage'; /** * * @export * @interface StoreListingIntegration */ export interface StoreListingIntegration { /** * * @type {string} * @memberof StoreListingIntegration */ 'id': string; /** * * @type {string} * @memberof StoreListingIntegration */ 'key': string; /** * * @type {string} * @memberof StoreListingIntegration */ 'title': string; /** * * @type {string} * @memberof StoreListingIntegration */ 'description'?: string; /** * * @type {string} * @memberof StoreListingIntegration */ 'descriptionFull'?: string; /** * * @type {string} * @memberof StoreListingIntegration */ 'iconUrl'?: string; /** * * @type {Array} * @memberof StoreListingIntegration */ 'previewImages'?: Array; /** * * @type {StoreListingPreviewImage} * @memberof StoreListingIntegration */ 'previewImageMain'?: StoreListingPreviewImage; /** * * @type {Array} * @memberof StoreListingIntegration */ 'capabilities'?: Array; /** * * @type {Array} * @memberof StoreListingIntegration */ 'permissions'?: Array; /** * * @type {StoreListingIntegrationAvailabilityByTier} * @memberof StoreListingIntegration */ 'availabilityByTier': StoreListingIntegrationAvailabilityByTier; /** * * @type {boolean} * @memberof StoreListingIntegration */ 'isHidden': boolean; /** * * @type {string} * @memberof StoreListingIntegration */ 'createdAt': string; /** * * @type {string} * @memberof StoreListingIntegration */ 'modifiedAt': string; /** * * @type {number} * @memberof StoreListingIntegration */ 'installationCount': number; /** * * @type {string} * @memberof StoreListingIntegration */ 'kind': StoreListingIntegrationKindEnum; /** * * @type {StoreListingIntegrationData} * @memberof StoreListingIntegration */ 'data': StoreListingIntegrationData; } /** * @export */ export declare const StoreListingIntegrationKindEnum: { readonly Integration: "INTEGRATION"; }; export type StoreListingIntegrationKindEnum = typeof StoreListingIntegrationKindEnum[keyof typeof StoreListingIntegrationKindEnum]; /** * Check if a given object implements the StoreListingIntegration interface. */ export declare function instanceOfStoreListingIntegration(value: object): value is StoreListingIntegration; export declare function StoreListingIntegrationFromJSON(json: any): StoreListingIntegration; export declare function StoreListingIntegrationFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingIntegration; export declare function StoreListingIntegrationToJSON(json: any): StoreListingIntegration; export declare function StoreListingIntegrationToJSONTyped(value?: StoreListingIntegration | null, ignoreDiscriminator?: boolean): any;