/* 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 StreetAddress */ export interface StreetAddress { /** * Unique ID for the street address * @type {string} * @memberof StreetAddress */ 'street_address_id'?: string; /** * Describes the type of address; valid values are home, work, or other. * @type {string} * @memberof StreetAddress */ 'kind': string; /** * Number and street of the address. * @type {string} * @memberof StreetAddress */ 'street'?: string; /** * The name of the city where the contact lives. * @type {string} * @memberof StreetAddress */ 'city'?: string; /** * The name of the state or province where the contact lives. * @type {string} * @memberof StreetAddress */ 'state'?: string; /** * The zip or postal code of the contact. * @type {string} * @memberof StreetAddress */ 'postal_code'?: string; /** * The name of the country where the contact lives. * @type {string} * @memberof StreetAddress */ 'country'?: string; /** * Date and time that the street address was created, in ISO-8601 format. System generated. * @type {string} * @memberof StreetAddress */ 'created_at'?: string; /** * Date and time that the street address was last updated, in ISO-8601 format. System generated. * @type {string} * @memberof StreetAddress */ 'updated_at'?: string; }