Sha256: 9d659c23d03b3f7d52222493f4ec989acd3c9824b6637d615555af7fee1dfb0d

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

# 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] |

## 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
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
klaviyo-api-sdk-4.2.0 docs/ProfileLocation.md
klaviyo-api-sdk-4.1.0 docs/ProfileLocation.md
klaviyo-api-sdk-2.0.0 docs/ProfileLocation.md
klaviyo-api-sdk-1.2.0 docs/ProfileLocation.md