/* 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 UpdateAccountRequest
*/
export interface UpdateAccountRequest {
/**
* The confirmed email address that is associated with the account owner.
* @type {string}
* @memberof UpdateAccountRequest
*/
'contact_email'?: string;
/**
* The account owner\'s contact phone number (up to 25 characters in length).
* @type {string}
* @memberof UpdateAccountRequest
*/
'contact_phone'?: string;
/**
* The two-letter ISO 3166-1 code representing the organization\'s country.
* @type {string}
* @memberof UpdateAccountRequest
*/
'country_code'?: string;
/**
* The read only encoded account ID that uniquely identifies the account.
* @type {string}
* @memberof UpdateAccountRequest
*/
'encoded_account_id'?: string;
/**
* The account owner\'s first name.
* @type {string}
* @memberof UpdateAccountRequest
*/
'first_name'?: string;
/**
* The account owner\'s last name.
* @type {string}
* @memberof UpdateAccountRequest
*/
'last_name'?: string;
/**
* The name of the organization that is associated with this account.
* @type {string}
* @memberof UpdateAccountRequest
*/
'organization_name'?: string;
/**
* The phone number of the organization that is associated with this account.
* @type {string}
* @memberof UpdateAccountRequest
*/
'organization_phone'?: string;
/**
* The two letter ISO 3166-1 code used to specify the state to associate with the account. This property is required if the country_code is US (United States).
* @type {string}
* @memberof UpdateAccountRequest
*/
'state_code'?: string;
/**
* The time zone to use for the account; as defined in the IANA time-zone database (see http://www.iana.org/time-zones).
* @type {string}
* @memberof UpdateAccountRequest
*/
'time_zone_id'?: string;
/**
* The organization\'s website URL.
* @type {string}
* @memberof UpdateAccountRequest
*/
'website'?: string;
}