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