/* 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 EmailLinkClickCount
*/
export interface EmailLinkClickCount {
/**
* The URL of a link in an email campaign activity. This URL is not normalized and appears the same as the URL in the email campaign activity.
* @type {string}
* @memberof EmailLinkClickCount
*/
'link_url'?: string;
/**
* The ID for a unique link URL in an email campaign activity.
* @type {string}
* @memberof EmailLinkClickCount
*/
'url_id'?: string;
/**
* The number of unique contacts that clicked the link.
* @type {number}
* @memberof EmailLinkClickCount
*/
'unique_clicks'?: number;
/**
* If the link uses the click segmentation feature, this property contains the action that contacts trigger when they click the link. Currently the only available action is add, which adds contacts that click the link to a contact list.
* @type {string}
* @memberof EmailLinkClickCount
*/
'list_action'?: string;
/**
* If the link uses the click segmentation feature, this property contains the contact list linked with the list_action property.
* @type {string}
* @memberof EmailLinkClickCount
*/
'list_id'?: string;
/**
* Link tags are not currently available in email campaigns. By default, this method combines results for duplicate link URLs. Link tags will allow users to get a separate link click report for each unique link_tag value they use, even if URLs are not unique.
* @type {string}
* @memberof EmailLinkClickCount
*/
'link_tag'?: string;
}