Sha256: 1c4ba3ad06efc03c6b6c682dc879d95541f6d28f9ec2313e8105c3c173e6f04d
Contents?: true
Size: 693 Bytes
Versions: 4
Compression:
Stored size: 693 Bytes
Contents
# Plaid::NullableAddressData ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **city** | **String** | The full city name | | | **region** | **String** | The region or state Example: `\"NC\"` | [optional] | | **street** | **String** | The full street address Example: `\"564 Main Street, APT 15\"` | | | **postal_code** | **String** | The postal code | [optional] | | **country** | **String** | The ISO 3166-1 alpha-2 country code | | ## Example ```ruby require 'plaid' instance = Plaid::NullableAddressData.new( city: null, region: null, street: null, postal_code: null, country: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems