Class: AdCenterWrapper::Address
- Inherits:
-
Object
- Object
- AdCenterWrapper::Address
- Defined in:
- lib/CustomerManagementService.rb
Overview
https://adcenter.microsoft.com/api/customermanagement/EntitiesAddress
city - SOAP::SOAPString
countryCode - SOAP::SOAPString
id - SOAP::SOAPLong
line1 - SOAP::SOAPString
line2 - SOAP::SOAPString
line3 - SOAP::SOAPString
line4 - SOAP::SOAPString
postalCode - SOAP::SOAPString
stateOrProvince - SOAP::SOAPString
timeStamp - SOAP::SOAPBase64
Instance Attribute Summary collapse
-
#city ⇒ Object
Returns the value of attribute city.
-
#countryCode ⇒ Object
Returns the value of attribute countryCode.
-
#id ⇒ Object
Returns the value of attribute id.
-
#line1 ⇒ Object
Returns the value of attribute line1.
-
#line2 ⇒ Object
Returns the value of attribute line2.
-
#line3 ⇒ Object
Returns the value of attribute line3.
-
#line4 ⇒ Object
Returns the value of attribute line4.
-
#postalCode ⇒ Object
Returns the value of attribute postalCode.
-
#stateOrProvince ⇒ Object
Returns the value of attribute stateOrProvince.
-
#timeStamp ⇒ Object
Returns the value of attribute timeStamp.
Instance Method Summary collapse
-
#initialize(city = nil, countryCode = nil, id = nil, line1 = nil, line2 = nil, line3 = nil, line4 = nil, postalCode = nil, stateOrProvince = nil, timeStamp = nil) ⇒ Address
constructor
A new instance of Address.
Constructor Details
permalink #initialize(city = nil, countryCode = nil, id = nil, line1 = nil, line2 = nil, line3 = nil, line4 = nil, postalCode = nil, stateOrProvince = nil, timeStamp = nil) ⇒ Address
Returns a new instance of Address.
302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/CustomerManagementService.rb', line 302 def initialize(city = nil, countryCode = nil, id = nil, line1 = nil, line2 = nil, line3 = nil, line4 = nil, postalCode = nil, stateOrProvince = nil, timeStamp = nil) @city = city @countryCode = countryCode @id = id @line1 = line1 @line2 = line2 @line3 = line3 @line4 = line4 @postalCode = postalCode @stateOrProvince = stateOrProvince @timeStamp = timeStamp end |
Instance Attribute Details
permalink #city ⇒ Object
Returns the value of attribute city.
291 292 293 |
# File 'lib/CustomerManagementService.rb', line 291 def city @city end |
permalink #countryCode ⇒ Object
Returns the value of attribute countryCode.
292 293 294 |
# File 'lib/CustomerManagementService.rb', line 292 def countryCode @countryCode end |
permalink #id ⇒ Object
Returns the value of attribute id.
293 294 295 |
# File 'lib/CustomerManagementService.rb', line 293 def id @id end |
permalink #line1 ⇒ Object
Returns the value of attribute line1.
294 295 296 |
# File 'lib/CustomerManagementService.rb', line 294 def line1 @line1 end |
permalink #line2 ⇒ Object
Returns the value of attribute line2.
295 296 297 |
# File 'lib/CustomerManagementService.rb', line 295 def line2 @line2 end |
permalink #line3 ⇒ Object
Returns the value of attribute line3.
296 297 298 |
# File 'lib/CustomerManagementService.rb', line 296 def line3 @line3 end |
permalink #line4 ⇒ Object
Returns the value of attribute line4.
297 298 299 |
# File 'lib/CustomerManagementService.rb', line 297 def line4 @line4 end |
permalink #postalCode ⇒ Object
Returns the value of attribute postalCode.
298 299 300 |
# File 'lib/CustomerManagementService.rb', line 298 def postalCode @postalCode end |
permalink #stateOrProvince ⇒ Object
Returns the value of attribute stateOrProvince.
299 300 301 |
# File 'lib/CustomerManagementService.rb', line 299 def stateOrProvince @stateOrProvince end |
permalink #timeStamp ⇒ Object
Returns the value of attribute timeStamp.
300 301 302 |
# File 'lib/CustomerManagementService.rb', line 300 def timeStamp @timeStamp end |