/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { WebitelContactsLookup } from './webitel-contacts-lookup'; /** * A contact\'s photo. A picture shown next to the contact\'s name to help others recognize the contact. * @export * @interface WebitelContactsPhoto */ export interface WebitelContactsPhoto { /** * The user who created this Field. * @type {string} * @memberof WebitelContactsPhoto */ created_at?: string; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsPhoto */ created_by?: WebitelContactsLookup; /** * Unique ID of the latest version of the update. This ID changes after any update to the underlying value(s). * @type {string} * @memberof WebitelContactsPhoto */ etag?: string; /** * The unique ID of the association. Never changes. * @type {string} * @memberof WebitelContactsPhoto */ id?: string; /** * * @type {string} * @memberof WebitelContactsPhoto */ photo_id?: string; /** * * @type {string} * @memberof WebitelContactsPhoto */ photo_url?: string; /** * True if the photo is a default photo; false if the photo is a user-provided photo. * @type {boolean} * @memberof WebitelContactsPhoto */ primary?: boolean; /** * Timestamp(milli) of the last Field update. Take part in Etag generation. * @type {string} * @memberof WebitelContactsPhoto */ updated_at?: string; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsPhoto */ updated_by?: WebitelContactsLookup; /** * Version of the latest update. Numeric sequence. * @type {number} * @memberof WebitelContactsPhoto */ ver?: number; } //# sourceMappingURL=webitel-contacts-photo.d.ts.map