Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 692 Bytes

Address1.md

File metadata and controls

28 lines (22 loc) · 692 Bytes

Synctera::Address1

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
country_code String ISO-3166-1 Alpha-2 country code
postal_code String Postal code
state String State, region, province, or prefecture

Example

require 'synctera'

instance = Synctera::Address1.new(
  address_line_1: 100 Main St.,
  address_line_2: Suite 99,
  city: New York,
  country_code: US,
  postal_code: 49633,
  state: NY
)