# KlaviyoAPI::ProfileLocation ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **address1** | **String** | First line of street address | [optional] | | **address2** | **String** | Second line of street address | [optional] | | **city** | **String** | City name | [optional] | | **country** | **String** | Country name | [optional] | | **latitude** | [**ProfileLocationLatitude**](ProfileLocationLatitude.md) | | [optional] | | **longitude** | [**ProfileLocationLongitude**](ProfileLocationLongitude.md) | | [optional] | | **region** | **String** | Region within a country, such as state or province | [optional] | | **zip** | **String** | Zip code | [optional] | | **timezone** | **String** | Time zone name. We recommend using time zones from the IANA Time Zone Database. | [optional] | | **ip** | **String** | IP Address | [optional] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::ProfileLocation.new( address1: 89 E 42nd St, address2: 1st floor, city: New York, country: United States, latitude: null, longitude: null, region: NY, zip: 10017, timezone: America/New_York, ip: 127.0.0.1 ) ```