Sha256: 5439116dc2549c7c3c1bbe0a3a6cd0980e702d6c03f5cfe1fcdd702154377832

Contents?: true

Size: 958 Bytes

Versions: 4

Compression:

Stored size: 958 Bytes

Contents

# SyncteraRubySdk::ShippingAddress

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **address_line_1** | **String** | Street address line 1 |  |
| **address_line_2** | **String** | Street address line 2 | [optional] |
| **city** | **String** | City | [optional] |
| **country_code** | **String** | ISO-3166-1 Alpha-2 country code |  |
| **postal_code** | **String** | Postal code | [optional] |
| **state** | **String** | State, region, province, or prefecture. This is the ISO-3166-2 subdivision code, excluding the country prefix. For example, TX for Texas USA or TAM for Tamaulipas Mexico. Its length varies by country, e.g. 2 characters for US, 3 for MX.  | [optional] |

## Example

```ruby
require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::ShippingAddress.new(
  address_line_1: 100 Main St.,
  address_line_2: Suite 99,
  city: New York,
  country_code: US,
  postal_code: 28620,
  state: NY
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synctera_ruby_sdk-1.1.3 docs/ShippingAddress.md
synctera_ruby_sdk-1.1.2 docs/ShippingAddress.md
synctera_ruby_sdk-1.1.1 docs/ShippingAddress.md
synctera_ruby_sdk-1.0.0 docs/ShippingAddress.md