/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 AddChannelResponseData */ export interface AddChannelResponseData { /** * The unique channel ID used internally in omnichannel-api and the frontend of the extension * @type {string} */ 'id'?: string; /** * The name of the channel * @type {string} */ 'name'?: string; /** * The URL for an icon that represents your channel * @type {string} */ 'avatar_url'?: string; /** * The channel ID you specified while creating the channel * @type {string} */ 'provider_channel_id'?: string; /** * The client_id of your app in Pipedrive marketplace * @type {string} */ 'marketplace_client_id'?: string; /** * The ID of the user\'s company in Pipedrive * @type {number} */ 'pd_company_id'?: number; /** * The ID of the user in Pipedrive * @type {number} */ 'pd_user_id'?: number; /** * The date and time when your channel was created in the API * @type {string} */ 'created_at'?: string; /** * Value of the provider_type sent to this endpoint * @type {string} */ 'provider_type'?: AddChannelResponseDataProviderTypeConst; /** * Value of the template_support sent to this endpoint * @type {boolean} */ 'template_support'?: boolean; } export declare const AddChannelResponseDataProviderTypeConst: { readonly facebook: "facebook"; readonly whatsapp: "whatsapp"; readonly other: "other"; }; export type AddChannelResponseDataProviderTypeConst = typeof AddChannelResponseDataProviderTypeConst[keyof typeof AddChannelResponseDataProviderTypeConst];