/* tslint:disable */ /* eslint-disable */ /** * Constant Contact API v3 * Swagger build version 3.0.2475 * * The version of the OpenAPI document: 1.0.116 * Contact: webservices@constantcontact.com * * 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 WebhooksTestSend */ export interface WebhooksTestSend { /** * Identifies the topic using an integer to indicate the type of topic. * @type {number} * @memberof WebhooksTestSend */ 'topic_id'?: number; /** * The webhook callback URI. Constant Contact automatically sends POST requests to this URI to notify you about the topic. * @type {string} * @memberof WebhooksTestSend */ 'hook_uri'?: string; /** * The name of the topic. * @type {string} * @memberof WebhooksTestSend */ 'topic_name'?: string; /** * A description of what the topic is and when Constant Contact notifies you concerning it. When you use the test send API method, Constant Contact will immediately send a test event to you. * @type {string} * @memberof WebhooksTestSend */ 'topic_description'?: string; }