/* tslint:disable */ /* eslint-disable */ /** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * 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 ProductDocumentClass */ export interface ProductDocumentClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof ProductDocumentClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof ProductDocumentClass */ 'code': string; /** * Unique identifier for the object. * @type {string} * @memberof ProductDocumentClass */ 'productCode': string; /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof ProductDocumentClass */ 'productVersionId': number; /** * * @type {string} * @memberof ProductDocumentClass */ 'type': string; /** * Description of the document. Usually a short summary about the context in which the document is being used. * @type {string} * @memberof ProductDocumentClass */ 'description': string; /** * The unique key used by Amazon Simple Storage Service (S3). * @type {string} * @memberof ProductDocumentClass */ 's3Key': string; /** * Type of the document expressed with its file extension. * @type {string} * @memberof ProductDocumentClass */ 'contentType': ProductDocumentClassContentTypeEnum; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof ProductDocumentClass */ 'productSlug': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof ProductDocumentClass */ 'slug': string; /** * Version number of the document, incremented each time the document is updated. * @type {number} * @memberof ProductDocumentClass */ 'versionNumber': number; /** * The file name of the document. * @type {string} * @memberof ProductDocumentClass */ 'filename': string; /** * The entity type of the document. * @type {string} * @memberof ProductDocumentClass */ 'entityType': string; /** * Time at which the object was created. * @type {string} * @memberof ProductDocumentClass */ 'createdAt': string; } export const ProductDocumentClassContentTypeEnum = { Pdf: 'pdf', Jpg: 'jpg', Png: 'png', Gz: 'gz', Csv: 'csv', Doc: 'doc', Docx: 'docx', Html: 'html', Json: 'json', Xml: 'xml', Txt: 'txt', Zip: 'zip', Tar: 'tar', Rar: 'rar', Mp4: 'MP4', Mov: 'MOV', Wmv: 'WMV', Avi: 'AVI' } as const; export type ProductDocumentClassContentTypeEnum = typeof ProductDocumentClassContentTypeEnum[keyof typeof ProductDocumentClassContentTypeEnum];