/** * 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 AddChannelRequest */ export interface AddChannelRequest { /** * The name of the channel * @type {string} */ 'name': string; /** * The channel ID * @type {string} */ 'provider_channel_id': string; /** * The URL for an icon that represents your channel * @type {string} */ 'avatar_url'?: string; /** * If true, enables templates logic on UI. Requires getTemplates endpoint implemented. Find out more [here](https://pipedrive.readme.io/docs/implementing-messaging-app-extension). * @type {boolean} */ 'template_support'?: boolean; /** * It controls the icons (like the icon next to the conversation) * @type {string} */ 'provider_type'?: AddChannelRequestProviderTypeConst; } export declare const AddChannelRequestProviderTypeConst: { readonly facebook: "facebook"; readonly whatsapp: "whatsapp"; readonly other: "other"; }; export type AddChannelRequestProviderTypeConst = typeof AddChannelRequestProviderTypeConst[keyof typeof AddChannelRequestProviderTypeConst];