/** * 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 { PresignedImage } from './PresignedImage'; /** * * @export * @interface FolderAllOfIcon */ export interface FolderAllOfIcon { /** * * @type {string} * @memberof FolderAllOfIcon */ 'type': FolderAllOfIconTypeEnum; /** * * @type {string} * @memberof FolderAllOfIcon */ 'emoji': string; /** * * @type {string} * @memberof FolderAllOfIcon */ 'predefined': string; /** * * @type {PresignedImage} * @memberof FolderAllOfIcon */ 'customImage': PresignedImage; } /** * @export */ export declare const FolderAllOfIconTypeEnum: { readonly CustomImage: "customImage"; }; export type FolderAllOfIconTypeEnum = typeof FolderAllOfIconTypeEnum[keyof typeof FolderAllOfIconTypeEnum]; /** * Check if a given object implements the FolderAllOfIcon interface. */ export declare function instanceOfFolderAllOfIcon(value: object): value is FolderAllOfIcon; export declare function FolderAllOfIconFromJSON(json: any): FolderAllOfIcon; export declare function FolderAllOfIconFromJSONTyped(json: any, ignoreDiscriminator: boolean): FolderAllOfIcon; export declare function FolderAllOfIconToJSON(json: any): FolderAllOfIcon; export declare function FolderAllOfIconToJSONTyped(value?: FolderAllOfIcon | null, ignoreDiscriminator?: boolean): any;