Class: AddressType

Inherits:
ComplexExactorObject show all
Defined in:
app/helpers/exactor_api_objects.rb

Overview

http://www.exactor.com/nsAddressType

fullName - SOAP::SOAPString
street1 - SOAP::SOAPString
street2 - SOAP::SOAPString
city - SOAP::SOAPString
county - SOAP::SOAPString
stateOrProvince - SOAP::SOAPString
postalCode - SOAP::SOAPString
country - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fullName = nil, street1 = nil, street2 = nil, city = nil, county = nil, stateOrProvince = nil, postalCode = nil, country = nil) ⇒ AddressType

Returns a new instance of AddressType.



154
155
156
157
158
159
160
161
162
163
# File 'app/helpers/exactor_api_objects.rb', line 154

def initialize(fullName = nil, street1 = nil, street2 = nil, city = nil, county = nil, stateOrProvince = nil, postalCode = nil, country = nil)
  @FullName = fullName
  @Street1 = street1
  @Street2 = street2
  @City = city
  @County = county
  @StateOrProvince = stateOrProvince
  @PostalCode = postalCode
  @Country = country
end

Instance Attribute Details

#CityObject

Returns the value of attribute City.



148
149
150
# File 'app/helpers/exactor_api_objects.rb', line 148

def City
  @City
end

#CountryObject

Returns the value of attribute Country.



152
153
154
# File 'app/helpers/exactor_api_objects.rb', line 152

def Country
  @Country
end

#CountyObject

Returns the value of attribute County.



149
150
151
# File 'app/helpers/exactor_api_objects.rb', line 149

def County
  @County
end

#FullNameObject

Returns the value of attribute FullName.



145
146
147
# File 'app/helpers/exactor_api_objects.rb', line 145

def FullName
  @FullName
end

#PostalCodeObject

Returns the value of attribute PostalCode.



151
152
153
# File 'app/helpers/exactor_api_objects.rb', line 151

def PostalCode
  @PostalCode
end

#StateOrProvinceObject

Returns the value of attribute StateOrProvince.



150
151
152
# File 'app/helpers/exactor_api_objects.rb', line 150

def StateOrProvince
  @StateOrProvince
end

#Street1Object

Returns the value of attribute Street1.



146
147
148
# File 'app/helpers/exactor_api_objects.rb', line 146

def Street1
  @Street1
end

#Street2Object

Returns the value of attribute Street2.



147
148
149
# File 'app/helpers/exactor_api_objects.rb', line 147

def Street2
  @Street2
end