/** * 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 * @interface PatchSmartCollectionRequest */ export interface PatchSmartCollectionRequest { /** * * @type {string} * @memberof PatchSmartCollectionRequest */ 'description': string | null; } /** * Check if a given object implements the PatchSmartCollectionRequest interface. */ export declare function instanceOfPatchSmartCollectionRequest(value: object): value is PatchSmartCollectionRequest; export declare function PatchSmartCollectionRequestFromJSON(json: any): PatchSmartCollectionRequest; export declare function PatchSmartCollectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchSmartCollectionRequest; export declare function PatchSmartCollectionRequestToJSON(json: any): PatchSmartCollectionRequest; export declare function PatchSmartCollectionRequestToJSONTyped(value?: PatchSmartCollectionRequest | null, ignoreDiscriminator?: boolean): any;