Class: BuildingSync::Address
- Inherits:
-
Object
- Object
- BuildingSync::Address
- 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
-
#city ⇒ Object
Returns the value of attribute city.
-
#country ⇒ Object
Returns the value of attribute country.
-
#county ⇒ Object
Returns the value of attribute county.
-
#postalCode ⇒ Object
Returns the value of attribute postalCode.
-
#postalCodePlus4 ⇒ Object
Returns the value of attribute postalCodePlus4.
-
#state ⇒ Object
Returns the value of attribute state.
-
#streetAddressDetail ⇒ Object
Returns the value of attribute streetAddressDetail.
Instance Method Summary collapse
-
#initialize(streetAddressDetail = nil, city = nil, state = nil, postalCode = nil, postalCodePlus4 = nil, county = nil, country = nil) ⇒ Address
constructor
A new instance of Address.
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
#city ⇒ Object
Returns the value of attribute city.
20865 20866 20867 |
# File 'lib/BuildingSync.rb', line 20865 def city @city end |
#country ⇒ Object
Returns the value of attribute country.
20870 20871 20872 |
# File 'lib/BuildingSync.rb', line 20870 def country @country end |
#county ⇒ Object
Returns the value of attribute county.
20869 20870 20871 |
# File 'lib/BuildingSync.rb', line 20869 def county @county end |
#postalCode ⇒ Object
Returns the value of attribute postalCode.
20867 20868 20869 |
# File 'lib/BuildingSync.rb', line 20867 def postalCode @postalCode end |
#postalCodePlus4 ⇒ Object
Returns the value of attribute postalCodePlus4.
20868 20869 20870 |
# File 'lib/BuildingSync.rb', line 20868 def postalCodePlus4 @postalCodePlus4 end |
#state ⇒ Object
Returns the value of attribute state.
20866 20867 20868 |
# File 'lib/BuildingSync.rb', line 20866 def state @state end |
#streetAddressDetail ⇒ Object
Returns the value of attribute streetAddressDetail.
20864 20865 20866 |
# File 'lib/BuildingSync.rb', line 20864 def streetAddressDetail @streetAddressDetail end |