Class: BuildingSync::Address

Inherits:
Object
  • Object
show all
Defined in:
lib/BuildingSync.rb

Overview

http://buildingsync.net/schemas/bedes-auc/2019Address

streetAddressDetail - BuildingSync::Address::StreetAddressDetail
city - SOAP::SOAPString
state - BuildingSync::State
postalCode - SOAP::SOAPString
postalCodePlus4 - SOAP::SOAPString
county - SOAP::SOAPString
country - SOAP::SOAPString

Defined Under Namespace

Classes: StreetAddressDetail

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(streetAddressDetail = nil, city = nil, state = nil, postalCode = nil, postalCodePlus4 = nil, county = nil, country = nil) ⇒ Address

Returns a new instance of Address.



20650
20651
20652
20653
20654
20655
20656
20657
20658
# File 'lib/BuildingSync.rb', line 20650

def initialize(streetAddressDetail = nil, city = nil, state = nil, postalCode = nil, postalCodePlus4 = nil, county = nil, country = nil)
  @streetAddressDetail = streetAddressDetail
  @city = city
  @state = state
  @postalCode = postalCode
  @postalCodePlus4 = postalCodePlus4
  @county = county
  @country = country
end

Instance Attribute Details

#cityObject

Returns the value of attribute city.



20643
20644
20645
# File 'lib/BuildingSync.rb', line 20643

def city
  @city
end

#countryObject

Returns the value of attribute country.



20648
20649
20650
# File 'lib/BuildingSync.rb', line 20648

def country
  @country
end

#countyObject

Returns the value of attribute county.



20647
20648
20649
# File 'lib/BuildingSync.rb', line 20647

def county
  @county
end

#postalCodeObject

Returns the value of attribute postalCode.



20645
20646
20647
# File 'lib/BuildingSync.rb', line 20645

def postalCode
  @postalCode
end

#postalCodePlus4Object

Returns the value of attribute postalCodePlus4.



20646
20647
20648
# File 'lib/BuildingSync.rb', line 20646

def postalCodePlus4
  @postalCodePlus4
end

#stateObject

Returns the value of attribute state.



20644
20645
20646
# File 'lib/BuildingSync.rb', line 20644

def state
  @state
end

#streetAddressDetailObject

Returns the value of attribute streetAddressDetail.



20642
20643
20644
# File 'lib/BuildingSync.rb', line 20642

def streetAddressDetail
  @streetAddressDetail
end