/** * 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 declare const ProductDocumentClassContentTypeEnum: { readonly Pdf: "pdf"; readonly Jpg: "jpg"; readonly Png: "png"; readonly Gz: "gz"; readonly Csv: "csv"; readonly Doc: "doc"; readonly Docx: "docx"; readonly Html: "html"; readonly Json: "json"; readonly Xml: "xml"; readonly Txt: "txt"; readonly Zip: "zip"; readonly Tar: "tar"; readonly Rar: "rar"; readonly Mp4: "MP4"; readonly Mov: "MOV"; readonly Wmv: "WMV"; readonly Avi: "AVI"; }; export type ProductDocumentClassContentTypeEnum = typeof ProductDocumentClassContentTypeEnum[keyof typeof ProductDocumentClassContentTypeEnum];