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.



20872
20873
20874
20875
20876
20877
20878
20879
20880
# File 'lib/BuildingSync.rb', line 20872

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.



20865
20866
20867
# File 'lib/BuildingSync.rb', line 20865

def city
  @city
end

#countryObject

Returns the value of attribute country.



20870
20871
20872
# File 'lib/BuildingSync.rb', line 20870

def country
  @country
end

#countyObject

Returns the value of attribute county.



20869
20870
20871
# File 'lib/BuildingSync.rb', line 20869

def county
  @county
end

#postalCodeObject

Returns the value of attribute postalCode.



20867
20868
20869
# File 'lib/BuildingSync.rb', line 20867

def postalCode
  @postalCode
end

#postalCodePlus4Object

Returns the value of attribute postalCodePlus4.



20868
20869
20870
# File 'lib/BuildingSync.rb', line 20868

def postalCodePlus4
  @postalCodePlus4
end

#stateObject

Returns the value of attribute state.



20866
20867
20868
# File 'lib/BuildingSync.rb', line 20866

def state
  @state
end

#streetAddressDetailObject

Returns the value of attribute streetAddressDetail.



20864
20865
20866
# File 'lib/BuildingSync.rb', line 20864

def streetAddressDetail
  @streetAddressDetail
end