/** * 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 { StoreListingCapability } from './StoreListingCapability'; import type { StoreListingPluginData } from './StoreListingPluginData'; import type { StoreListingPermission } from './StoreListingPermission'; import type { StoreListingIntegrationAvailabilityByTier } from './StoreListingIntegrationAvailabilityByTier'; import type { StoreListingPreviewImage } from './StoreListingPreviewImage'; /** * * @export * @interface StoreListingPlugin */ export interface StoreListingPlugin { /** * * @type {string} * @memberof StoreListingPlugin */ 'id': string; /** * * @type {string} * @memberof StoreListingPlugin */ 'key': string; /** * * @type {string} * @memberof StoreListingPlugin */ 'title': string; /** * * @type {string} * @memberof StoreListingPlugin */ 'description'?: string; /** * * @type {string} * @memberof StoreListingPlugin */ 'descriptionFull'?: string; /** * * @type {string} * @memberof StoreListingPlugin */ 'iconUrl'?: string; /** * * @type {Array} * @memberof StoreListingPlugin */ 'previewImages'?: Array; /** * * @type {StoreListingPreviewImage} * @memberof StoreListingPlugin */ 'previewImageMain'?: StoreListingPreviewImage; /** * * @type {Array} * @memberof StoreListingPlugin */ 'capabilities'?: Array; /** * * @type {Array} * @memberof StoreListingPlugin */ 'permissions'?: Array; /** * * @type {StoreListingIntegrationAvailabilityByTier} * @memberof StoreListingPlugin */ 'availabilityByTier': StoreListingIntegrationAvailabilityByTier; /** * * @type {boolean} * @memberof StoreListingPlugin */ 'isHidden': boolean; /** * * @type {string} * @memberof StoreListingPlugin */ 'createdAt': string; /** * * @type {string} * @memberof StoreListingPlugin */ 'modifiedAt': string; /** * * @type {number} * @memberof StoreListingPlugin */ 'installationCount': number; /** * * @type {string} * @memberof StoreListingPlugin */ 'kind': StoreListingPluginKindEnum; /** * * @type {StoreListingPluginData} * @memberof StoreListingPlugin */ 'data': StoreListingPluginData; } /** * @export */ export declare const StoreListingPluginKindEnum: { readonly Plugin: "PLUGIN"; }; export type StoreListingPluginKindEnum = typeof StoreListingPluginKindEnum[keyof typeof StoreListingPluginKindEnum]; /** * Check if a given object implements the StoreListingPlugin interface. */ export declare function instanceOfStoreListingPlugin(value: object): value is StoreListingPlugin; export declare function StoreListingPluginFromJSON(json: any): StoreListingPlugin; export declare function StoreListingPluginFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingPlugin; export declare function StoreListingPluginToJSON(json: any): StoreListingPlugin; export declare function StoreListingPluginToJSONTyped(value?: StoreListingPlugin | null, ignoreDiscriminator?: boolean): any;