/** * 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'; /** * Input of the contact phone number. * @export * @interface WebitelContactsInputPhoneNumber */ export interface WebitelContactsInputPhoneNumber { /** * Unique ID of the latest version of an existing resorce. * @type {string} * @memberof WebitelContactsInputPhoneNumber */ etag?: string; /** * The phone number. * @type {string} * @memberof WebitelContactsInputPhoneNumber */ number: string; /** * Indicates whether this phone number is default within other channels of the same type(phone). * @type {boolean} * @memberof WebitelContactsInputPhoneNumber */ primary?: boolean; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsInputPhoneNumber */ type?: WebitelContactsLookup; /** * * @type {boolean} * @memberof WebitelContactsInputPhoneNumber */ verified?: boolean; } //# sourceMappingURL=webitel-contacts-input-phone-number.d.ts.map