/* 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 InsuredObjectTypeClass */ export interface InsuredObjectTypeClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof InsuredObjectTypeClass */ 'id': number; /** * Insured object type name * @type {string} * @memberof InsuredObjectTypeClass */ '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 InsuredObjectTypeClass */ 'slug': string; /** * Time at which the object was created. * @type {string} * @memberof InsuredObjectTypeClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof InsuredObjectTypeClass */ 'updatedAt': string; }