/* 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 ProductVersionClass */ export interface ProductVersionClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof ProductVersionClass */ 'id': number; /** * Unique identifier referencing the product. * @type {number} * @memberof ProductVersionClass */ 'productId': number; /** * Product version description. * @type {string} * @memberof ProductVersionClass */ 'description': string; /** * Product version status. * @type {string} * @memberof ProductVersionClass */ 'status': ProductVersionClassStatusEnum; /** * Time at which the object was created. * @type {string} * @memberof ProductVersionClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof ProductVersionClass */ 'updatedAt': string; } export const ProductVersionClassStatusEnum = { Draft: 'draft', Active: 'active', Passive: 'passive', Archived: 'archived' } as const; export type ProductVersionClassStatusEnum = typeof ProductVersionClassStatusEnum[keyof typeof ProductVersionClassStatusEnum];