/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AddressDto } from './address-dto'; import { ContactCustomFieldValueDto } from './contact-custom-field-value-dto'; import { ContactMetadataDto } from './contact-metadata-dto'; import { ModelMetaObjectDto } from './model-meta-object-dto'; /** * * @export * @interface ContactDto */ export interface ContactDto { /** * Describes the date of the last update * @type {number} * @memberof ContactDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof ContactDto */ deletedAt?: number; /** * * @type {string} * @memberof ContactDto */ id?: string; /** * * @type {number} * @memberof ContactDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof ContactDto */ _meta?: ModelMetaObjectDto; /** * * @type {string} * @memberof ContactDto */ title?: string; /** * * @type {string} * @memberof ContactDto */ salutation?: string; /** * * @type {string} * @memberof ContactDto */ firstName?: string; /** * * @type {string} * @memberof ContactDto */ lastName?: string; /** * * @type {string} * @memberof ContactDto */ birthday?: string; /** * * @type {AddressDto} * @memberof ContactDto */ address?: AddressDto; /** * * @type {string} * @memberof ContactDto */ avatarUrl?: string; /** * * @type {string} * @memberof ContactDto */ email?: string; /** * * @type {string} * @memberof ContactDto */ phone?: string; /** * * @type {string} * @memberof ContactDto */ mobile?: string; /** * * @type {string} * @memberof ContactDto */ company?: string; /** * * @type {string} * @memberof ContactDto */ companyPosition?: string; /** * * @type {string} * @memberof ContactDto */ companyPhone?: string; /** * * @type {AddressDto} * @memberof ContactDto */ companyAddress?: AddressDto; /** * * @type {Array} * @memberof ContactDto */ customFields?: Array; /** * * @type {ContactMetadataDto} * @memberof ContactDto */ metadata?: ContactMetadataDto; /** * * @type {boolean} * @memberof ContactDto */ publicAccess?: boolean; }