/* 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 UniqueEmailCounts */ export interface UniqueEmailCounts { /** * The total number of unique sends. * @type {number} * @memberof UniqueEmailCounts */ 'sends': number; /** * The total number of unique opens. * @type {number} * @memberof UniqueEmailCounts */ 'opens': number; /** * The total number of unique clicks. * @type {number} * @memberof UniqueEmailCounts */ 'clicks': number; /** * The total number of unique forwards. * @type {number} * @memberof UniqueEmailCounts */ 'forwards': number; /** * The total number of unique optouts (unsubscribes). * @type {number} * @memberof UniqueEmailCounts */ 'optouts': number; /** * The total number of unique abuse count (spam). * @type {number} * @memberof UniqueEmailCounts */ 'abuse': number; /** * The total number of unique bounce count. * @type {number} * @memberof UniqueEmailCounts */ 'bounces': number; /** * The total number of unique non-opens * @type {number} * @memberof UniqueEmailCounts */ 'not_opened': number; }