/* 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 PolicyObjectRequestDto */ export interface PolicyObjectRequestDto { /** * The id of the insured object to be used in the policy. The insured object id will be validated if the \'validate\' flag is set to true. * @type {number} * @memberof PolicyObjectRequestDto */ 'insuredObjectId'?: number; /** * Insured object name. Human readable identifier of insured object. Can be used instead of insuredObjectId * @type {string} * @memberof PolicyObjectRequestDto */ 'insuredObjectName'?: string; /** * Insured object data. The date will be validated if the \'validate\' flag is set to true. * @type {object} * @memberof PolicyObjectRequestDto */ 'data'?: object; /** * * @type {string} * @memberof PolicyObjectRequestDto */ 'code'?: string; }