/* tslint:disable */ /* eslint-disable */ /** * Constant Contact API v3 * Swagger build version 3.0.2475 * * The version of the OpenAPI document: 1.0.116 * Contact: webservices@constantcontact.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import { MyLibraryFileCollectionInnerThumbnail } from './my-library-file-collection-inner-thumbnail'; /** * * @export * @interface FileObject */ export interface FileObject { /** * Identifies the MyLibrary file. * @type {number} * @memberof FileObject */ 'id'?: number; /** * The file name. * @type {string} * @memberof FileObject */ 'name'?: string; /** * The image height. * @type {number} * @memberof FileObject */ 'height'?: number; /** * The image width. * @type {number} * @memberof FileObject */ 'width'?: number; /** * The image size. * @type {number} * @memberof FileObject */ 'size'?: number; /** * The image URL. * @type {string} * @memberof FileObject */ 'url'?: string; /** * The image description. * @type {string} * @memberof FileObject */ 'description'?: string; /** * The image folder * @type {string} * @memberof FileObject */ 'folder'?: string; /** * The application that uploaded this image. * @type {string} * @memberof FileObject */ 'source'?: string; /** * The image format. * @type {string} * @memberof FileObject */ 'type'?: string; /** * THe image status. * @type {string} * @memberof FileObject */ 'status'?: string; /** * * @type {MyLibraryFileCollectionInnerThumbnail} * @memberof FileObject */ 'thumbnail'?: MyLibraryFileCollectionInnerThumbnail; /** * Boolean indicating if this file is an image. * @type {boolean} * @memberof FileObject */ 'image'?: boolean; /** * Identifies a folder in MyLibrary. * @type {number} * @memberof FileObject */ 'folder_id'?: number; /** * The external url for the file. * @type {string} * @memberof FileObject */ 'external_url'?: string; /** * Identifies the time a user last modified the file. * @type {string} * @memberof FileObject */ 'modified_date'?: string; /** * Identifies the time a user originally added the file to MyLibrary. * @type {string} * @memberof FileObject */ 'added_date'?: string; /** * External identifier for the file. * @type {string} * @memberof FileObject */ 'external_file_id'?: string; }