Class: AdCenterWrapper::Address

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#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.

[View source]

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

#cityObject

Returns the value of attribute city.


291
292
293
# File 'lib/CustomerManagementService.rb', line 291

def city
  @city
end

#countryCodeObject

Returns the value of attribute countryCode.


292
293
294
# File 'lib/CustomerManagementService.rb', line 292

def countryCode
  @countryCode
end

#idObject

Returns the value of attribute id.


293
294
295
# File 'lib/CustomerManagementService.rb', line 293

def id
  @id
end

#line1Object

Returns the value of attribute line1.


294
295
296
# File 'lib/CustomerManagementService.rb', line 294

def line1
  @line1
end

#line2Object

Returns the value of attribute line2.


295
296
297
# File 'lib/CustomerManagementService.rb', line 295

def line2
  @line2
end

#line3Object

Returns the value of attribute line3.


296
297
298
# File 'lib/CustomerManagementService.rb', line 296

def line3
  @line3
end

#line4Object

Returns the value of attribute line4.


297
298
299
# File 'lib/CustomerManagementService.rb', line 297

def line4
  @line4
end

#postalCodeObject

Returns the value of attribute postalCode.


298
299
300
# File 'lib/CustomerManagementService.rb', line 298

def postalCode
  @postalCode
end

#stateOrProvinceObject

Returns the value of attribute stateOrProvince.


299
300
301
# File 'lib/CustomerManagementService.rb', line 299

def stateOrProvince
  @stateOrProvince
end

#timeStampObject

Returns the value of attribute timeStamp.


300
301
302
# File 'lib/CustomerManagementService.rb', line 300

def timeStamp
  @timeStamp
end