/* 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 OptoutsTrackingActivity */ export interface OptoutsTrackingActivity { /** * The ID that uniquely identifies a contact. * @type {string} * @memberof OptoutsTrackingActivity */ 'contact_id': string; /** * The ID that uniquely identifies the email campaign activity. * @type {string} * @memberof OptoutsTrackingActivity */ 'campaign_activity_id': string; /** * The type of report tracking activity that is associated with the specified campaign_activity_id. * @type {string} * @memberof OptoutsTrackingActivity */ 'tracking_activity_type': string; /** * The contact\'s email address. * @type {string} * @memberof OptoutsTrackingActivity */ 'email_address': string; /** * The first name of the contact. * @type {string} * @memberof OptoutsTrackingActivity */ 'first_name'?: string; /** * The last name of the contact. * @type {string} * @memberof OptoutsTrackingActivity */ 'last_name'?: string; /** * The opt-out reason, if the contact entered a reason. * @type {string} * @memberof OptoutsTrackingActivity */ 'opt_out_reason'?: string; /** * The time that the contact chose to opt-out from receiving future email campaign activities. * @type {string} * @memberof OptoutsTrackingActivity */ 'created_time': string; /** * If applicable, displays the date that the contact was deleted. * @type {string} * @memberof OptoutsTrackingActivity */ 'deleted_at'?: string; }