/* 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. */ import { InsuredObjectTypeClass } from './insured-object-type-class'; import { ProductVersionClass } from './product-version-class'; /** * * @export * @interface ProductClass */ export interface ProductClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof ProductClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof ProductClass */ 'code': string; /** * Product\'s name. * @type {string} * @memberof ProductClass */ 'name': 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 ProductClass */ 'slug': string; /** * Insured object types covered under product. * @type {Array} * @memberof ProductClass */ 'insuredObjectTypes': Array; /** * Contract duration in days. * @type {number} * @memberof ProductClass */ 'contractDurationDays': number; /** * Product versions. * @type {Array} * @memberof ProductClass */ 'versions': Array; /** * Time at which the object was created. * @type {string} * @memberof ProductClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof ProductClass */ 'updatedAt': string; /** * Default language of the product. * @type {string} * @memberof ProductClass */ 'defaultLanguage': string; }