/* 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 TrackingActivitySmsChannelDTO */ export interface TrackingActivitySmsChannelDTO { /** * The ISO country code that is associated with SMS address. * @type {string} * @memberof TrackingActivitySmsChannelDTO */ 'country_code'?: string; /** * The SMS channel status: * @type {string} * @memberof TrackingActivitySmsChannelDTO */ 'state'?: string; /** * The formatted SMS number returned if the SMS country_code does not match the contacts country_code. * @type {string} * @memberof TrackingActivitySmsChannelDTO */ 'formatted_international'?: string; /** * The formatted SMS number returned if the SMS country_code matches the contacts country_code. * @type {string} * @memberof TrackingActivitySmsChannelDTO */ 'formatted_national'?: string; }