/** * 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 ResourceThumbnail */ export interface ResourceThumbnail { /** * * @type {string} * @memberof ResourceThumbnail */ 'sm'?: string; /** * * @type {string} * @memberof ResourceThumbnail */ 'md'?: string; /** * * @type {string} * @memberof ResourceThumbnail */ 'lg'?: string; /** * * @type {string} * @memberof ResourceThumbnail */ 'xl'?: string; /** * * @type {string} * @memberof ResourceThumbnail */ 'original'?: string; } /** * Check if a given object implements the ResourceThumbnail interface. */ export declare function instanceOfResourceThumbnail(value: object): value is ResourceThumbnail; export declare function ResourceThumbnailFromJSON(json: any): ResourceThumbnail; export declare function ResourceThumbnailFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceThumbnail; export declare function ResourceThumbnailToJSON(json: any): ResourceThumbnail; export declare function ResourceThumbnailToJSONTyped(value?: ResourceThumbnail | null, ignoreDiscriminator?: boolean): any;