/* 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 SendsTrackingActivity */ export interface SendsTrackingActivity { /** * The ID that uniquely identifies a contact. * @type {string} * @memberof SendsTrackingActivity */ 'contact_id': string; /** * The ID that uniquely identifies an email campaign activity. * @type {string} * @memberof SendsTrackingActivity */ 'campaign_activity_id': string; /** * The type of tracking activity that is associated with this campaign_activity_id and used for reporting purposes. * @type {string} * @memberof SendsTrackingActivity */ 'tracking_activity_type': string; /** * The email address used to send the email campaign activity to a contact. * @type {string} * @memberof SendsTrackingActivity */ 'email_address': string; /** * The first name of the contact. * @type {string} * @memberof SendsTrackingActivity */ 'first_name'?: string; /** * The last name of the contact. * @type {string} * @memberof SendsTrackingActivity */ 'last_name'?: string; /** * The date and time that you sent the email campaign to the contact. * @type {string} * @memberof SendsTrackingActivity */ 'created_time': string; /** * If applicable, displays the date that the contact was deleted. * @type {string} * @memberof SendsTrackingActivity */ 'deleted_at'?: string; }