/* 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 EmailPhysicalAddress
*/
export interface EmailPhysicalAddress {
/**
* Line 1 of the organization\'s street address.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'address_line1': string;
/**
* Line 2 of the organization\'s street address.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'address_line2'?: string;
/**
* Line 3 of the organization\'s street address.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'address_line3'?: string;
/**
* An optional address field for the organization. Only format_type 3, 4, and 5 can use this property.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'address_optional'?: string;
/**
* The city where the organization sending the email campaign is located.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'city'?: string;
/**
* The uppercase two letter ISO 3166-1 code for the organization\'s country.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'country_code': string;
/**
* The full name of the country where the organization sending the email is located. Automatically generated using the country_code.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'country_name'?: string;
/**
* The name of the organization that is sending the email campaign.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'organization_name': string;
/**
* The postal code address (ZIP code) of the organization.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'postal_code'?: string;
/**
* The uppercase two letter ISO 3166-1 code for the organization\'s state. This property is required if the country_code is US (United States).
* @type {string}
* @memberof EmailPhysicalAddress
*/
'state_code'?: string;
/**
* The full state name for a state_code that is inside the United States. Automatically generated using the state_code.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'state_name'?: string;
/**
* The full state name for a state_code that is outside the United States. This property is not read only.
* @type {string}
* @memberof EmailPhysicalAddress
*/
'state_non_us_name'?: string;
}