SyncteraRubySdk::Address3

Properties

Name Type Description Notes
address_line_1 String street address [optional][readonly]
address_line_2 String street address [optional][readonly]
city String city [optional][readonly]
country_code String country code [optional][readonly]
postal_code String postal code [optional][readonly]
state String state [optional][readonly]

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::Address3.new(
  address_line_1: 321 Main St,
  address_line_2: Apt 34,
  city: Chicago,
  country_code: USA,
  postal_code: 60622,
  state: IL
)