/** * 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 ProductFieldClass */ export interface ProductFieldClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof ProductFieldClass */ 'id': number; /** * Product field name. * @type {string} * @memberof ProductFieldClass */ 'name': string; /** * Product field group. * @type {string} * @memberof ProductFieldClass */ 'group': string; /** * Product field label. * @type {string} * @memberof ProductFieldClass */ 'label': string; /** * Product field type. * @type {string} * @memberof ProductFieldClass */ 'typeEntity': string; /** * Unique identifier referencing the product type. * @type {number} * @memberof ProductFieldClass */ 'typeId': number; /** * Unique identifier referencing the insured object. * @type {number} * @memberof ProductFieldClass */ 'insuredObjectId': number; /** * Is field required? * @type {boolean} * @memberof ProductFieldClass */ 'isRequired': boolean; /** * Is field hidden on the booking funnel? * @type {boolean} * @memberof ProductFieldClass */ 'isHidden': boolean; /** * Is field hidden on the customer portal? * @type {boolean} * @memberof ProductFieldClass */ 'isHiddenCustomerPortal': boolean; /** * Is field editable on the customer portal? * @type {boolean} * @memberof ProductFieldClass */ 'isEditableCustomerPortal': boolean; /** * Is this a system field? - System fields can neither be deleted nor modified * @type {boolean} * @memberof ProductFieldClass */ 'isSystem': boolean; /** * Should the field value be unique across policies? * @type {boolean} * @memberof ProductFieldClass */ 'isUnique': boolean; /** * Default value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" } * @type {object} * @memberof ProductFieldClass */ 'defaultValue': object; /** * Minimum value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" } * @type {object} * @memberof ProductFieldClass */ 'minValue': object; /** * Maximum value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" } * @type {object} * @memberof ProductFieldClass */ 'maxValue': object; /** * Time at which the object was created. * @type {string} * @memberof ProductFieldClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof ProductFieldClass */ 'updatedAt': string; /** * Order * @type {number} * @memberof ProductFieldClass */ 'order': number; /** * Is this field is used the premium calculation? * @type {boolean} * @memberof ProductFieldClass */ 'usedInPremiumCalculation': boolean; /** * Overrides automatic dependency check result (if this field is used in the premium calculation or not). * @type {string} * @memberof ProductFieldClass */ 'usedInPremiumCalculationOverride': string; /** * Is this field is used the product field calculation? * @type {boolean} * @memberof ProductFieldClass */ 'usedInFieldCalculation': boolean; /** * Overrides automatic dependency check result (if this field is used in the product field calculation or not). * @type {string} * @memberof ProductFieldClass */ 'usedInFieldCalculationOverride': string; }