/* 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 GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
export interface GetCampaignActivityLinkReport200ResponseLinkClickCountsInner {
/**
* 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 GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
'link_url'?: string;
/**
* The ID for a unique link URL in an email campaign activity.
* @type {string}
* @memberof GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
'url_id'?: string;
/**
* The number of unique contacts that clicked the link.
* @type {number}
* @memberof GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
'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 GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
'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 GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
'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 GetCampaignActivityLinkReport200ResponseLinkClickCountsInner
*/
'link_tag'?: string;
}