/** * 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 { GeneralLookup } from './general-lookup'; import { WebitelCasesSourceType } from './webitel-cases-source-type'; /** * Represents a source entity in the contact system. * @export * @interface WebitelCasesSource */ export interface WebitelCasesSource { /** * * @type {string} * @memberof WebitelCasesSource */ created_at?: string; /** * * @type {GeneralLookup} * @memberof WebitelCasesSource */ created_by?: GeneralLookup; /** * * @type {string} * @memberof WebitelCasesSource */ description?: string; /** * * @type {string} * @memberof WebitelCasesSource */ id?: string; /** * * @type {string} * @memberof WebitelCasesSource */ name?: string; /** * * @type {WebitelCasesSourceType} * @memberof WebitelCasesSource */ type?: WebitelCasesSourceType; /** * * @type {string} * @memberof WebitelCasesSource */ updated_at?: string; /** * * @type {GeneralLookup} * @memberof WebitelCasesSource */ updated_by?: GeneralLookup; } //# sourceMappingURL=webitel-cases-source.d.ts.map