/* 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 ClicksTrackingActivity */ export interface ClicksTrackingActivity { /** * The ID that uniquely identifies a contact. * @type {string} * @memberof ClicksTrackingActivity */ 'contact_id': string; /** * The ID that uniquely identifies the email campaign activity. * @type {string} * @memberof ClicksTrackingActivity */ 'campaign_activity_id': string; /** * The type of report tracking activity that is associated with the specified campaign_activity_id. * @type {string} * @memberof ClicksTrackingActivity */ 'tracking_activity_type': string; /** * The email address used to send the email campaign activity to a contact. * @type {string} * @memberof ClicksTrackingActivity */ 'email_address': string; /** * The first name of the contact. * @type {string} * @memberof ClicksTrackingActivity */ 'first_name'?: string; /** * The last name of the contact. * @type {string} * @memberof ClicksTrackingActivity */ 'last_name'?: string; /** * The type of device that the contact was using when they clicked the URL link for the email campaign activity. * @type {string} * @memberof ClicksTrackingActivity */ 'device_type'?: string; /** * The ID used to uniquely identify the URL link. * @type {string} * @memberof ClicksTrackingActivity */ 'url_id': string; /** * The text used for the URL link. * @type {string} * @memberof ClicksTrackingActivity */ 'link_url': string; /** * The date and time that the contact clicked the specified URL link for the email campaign activity. * @type {string} * @memberof ClicksTrackingActivity */ 'created_time': string; /** * If applicable, displays the date that the contact was deleted. * @type {string} * @memberof ClicksTrackingActivity */ 'deleted_at'?: string; }