/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ProfileLocationLatitude } from './profileLocationLatitude'; import { ProfileLocationLongitude } from './profileLocationLongitude'; export declare class ProfileLocation { /** * First line of street address */ 'address1'?: string | null; /** * Second line of street address */ 'address2'?: string | null; /** * City name */ 'city'?: string | null; /** * Country name */ 'country'?: string | null; 'latitude'?: ProfileLocationLatitude | null; 'longitude'?: ProfileLocationLongitude | null; /** * Region within a country, such as state or province */ 'region'?: string | null; /** * Zip code */ 'zip'?: string | null; /** * Time zone name. We recommend using time zones from the IANA Time Zone Database. */ 'timezone'?: string | null; /** * IP Address */ 'ip'?: string | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }