XeroRuby::Accounting::Address Properties Name Type Description Notes address_type String define the type of address [optional] address_line1 String max length = 500 [optional] address_line2 String max length = 500 [optional] address_line3 String max length = 500 [optional] address_line4 String max length = 500 [optional] city String max length = 255 [optional] region String max length = 255 [optional] postal_code String max length = 50 [optional] country String max length = 50, [A-Z], [a-z] only [optional] attention_to String max length = 255 [optional] Code Sample require 'XeroRuby::Accounting' instance = XeroRuby::Accounting::Address.new(address_type: null, address_line1: null, address_line2: null, address_line3: null, address_line4: null, city: null, region: null, postal_code: null, country: null, attention_to: null)