Sha256: c3c58ef9c00dc9c686d8a59660217df88d585525863309606fa1ffa1d55177ef

Contents?: true

Size: 795 Bytes

Versions: 11

Compression:

Stored size: 795 Bytes

Contents

# MoneyKit::Address

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **city** | **String** | The city of the address. | [optional] |
| **country** | **String** | The country of the address. | [optional] |
| **postal_code** | **String** | The postal or zip code of the address. | [optional] |
| **region** | **String** | The region or state of the address. | [optional] |
| **street** | **String** | The street of the address. | [optional] |
| **primary** | **Boolean** | Indicates if this is the primary address for the account owner. | [optional][default to false] |

## Example

```ruby
require 'moneykit'

instance = MoneyKit::Address.new(
  city: null,
  country: null,
  postal_code: null,
  region: null,
  street: null,
  primary: null
)
```

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
moneykit-0.1.10 docs/Address.md
moneykit-0.1.9 docs/Address.md
moneykit-0.1.6 docs/Address.md
moneykit-0.1.5 docs/Address.md
moneykit-0.1.4 docs/Address.md
moneykit-0.1.3 docs/Address.md
moneykit-0.1.2 docs/Address.md
moneykit-0.1.1 docs/Address.md
moneykit-0.1.0 docs/Address.md
moneykit-0.1.0.alpha.2 docs/Address.md
moneykit-0.1.0.alpha.1 docs/Address.md