/* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import { GetContactById200ResponseCustomFieldsInner } from './get-contact-by-id200-response-custom-fields-inner';
// May contain unused imports in some cases
// @ts-ignore
import { GetContactById200ResponseNotesInner } from './get-contact-by-id200-response-notes-inner';
// May contain unused imports in some cases
// @ts-ignore
import { UpdateContactRequestEmailAddress } from './update-contact-request-email-address';
// May contain unused imports in some cases
// @ts-ignore
import { UpdateContactRequestPhoneNumbersInner } from './update-contact-request-phone-numbers-inner';
// May contain unused imports in some cases
// @ts-ignore
import { UpdateContactRequestStreetAddressesInner } from './update-contact-request-street-addresses-inner';
/**
*
* @export
* @interface UpdateContactRequest
*/
export interface UpdateContactRequest {
/**
*
* @type {UpdateContactRequestEmailAddress}
* @memberof UpdateContactRequest
*/
'email_address'?: UpdateContactRequestEmailAddress;
/**
* The contact\'s first name
* @type {string}
* @memberof UpdateContactRequest
*/
'first_name'?: string;
/**
* The contact\'s last name
* @type {string}
* @memberof UpdateContactRequest
*/
'last_name'?: string;
/**
* The contact\'s job title
* @type {string}
* @memberof UpdateContactRequest
*/
'job_title'?: string;
/**
* Name of the company the contact works for.
* @type {string}
* @memberof UpdateContactRequest
*/
'company_name'?: string;
/**
* Accepts values from 1-12; must be used with birthday_day
* @type {number}
* @memberof UpdateContactRequest
*/
'birthday_month'?: number;
/**
* Accepts values from 1-31; must be used with birthday_month
* @type {number}
* @memberof UpdateContactRequest
*/
'birthday_day'?: number;
/**
* The anniversary date; Accepted formats are MM/DD/YYYY, M/D/YYYY, YYYY/MM/DD, YYYY/M/D, YYYY-MM-DD, YYYY-M-D, MM-DD-YYYY, M-D-YYYY
* @type {string}
* @memberof UpdateContactRequest
*/
'anniversary'?: string;
/**
* Identifies who last updated the contact; valid values are Contact or Account.
* @type {string}
* @memberof UpdateContactRequest
*/
'update_source': string;
/**
* Array of up to 25 custom_field subresources.
* @type {Array}
* @memberof UpdateContactRequest
*/
'custom_fields'?: Array;
/**
* Array of up to 3 phone_numbers subresources.
* @type {Array}
* @memberof UpdateContactRequest
*/
'phone_numbers'?: Array;
/**
* Array of up to 3 street_addresses subresources.
* @type {Array}
* @memberof UpdateContactRequest
*/
'street_addresses'?: Array;
/**
* Array of up to 50 list_ids to which the contact is subscribed.
* @type {Array}
* @memberof UpdateContactRequest
*/
'list_memberships'?: Array;
/**
* Array of tags (tag_id) assigned to the contact, up to a maximum of 50.
* @type {Array}
* @memberof UpdateContactRequest
*/
'taggings'?: Array;
/**
* An array of notes about the contact listed by most recent note first.
* @type {Array}
* @memberof UpdateContactRequest
*/
'notes'?: Array;
}