/** * 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. */ import { ProductFactorValueForVersionClass } from './product-factor-value-for-version-class'; /** * * @export * @interface ProductFactorForVersionClass */ export interface ProductFactorForVersionClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof ProductFactorForVersionClass */ 'id': number; /** * Unique identifier referencing the version of the product on which this product factor is used. * @type {number} * @memberof ProductFactorForVersionClass */ 'productVersionId': number; /** * Product factor group. * @type {string} * @memberof ProductFactorForVersionClass */ 'group': string; /** * Product factor label. * @type {string} * @memberof ProductFactorForVersionClass */ 'label': string; /** * Time at which the object was created. * @type {string} * @memberof ProductFactorForVersionClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof ProductFactorForVersionClass */ 'updatedAt': string; /** * The list of productFactorValues. * @type {Array} * @memberof ProductFactorForVersionClass */ 'values': Array; }