Class: AdCenterWrapper::Address

Inherits:
Object
  • Object
show all
Defined in:
lib/adcenter_wrapper_entities.rb,
lib/adcenter_wrapper_entities.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.



4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
# File 'lib/adcenter_wrapper_entities.rb', line 4208

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.



4197
4198
4199
# File 'lib/adcenter_wrapper_entities.rb', line 4197

def city
  @city
end

#countryCodeObject

Returns the value of attribute countryCode.



4198
4199
4200
# File 'lib/adcenter_wrapper_entities.rb', line 4198

def countryCode
  @countryCode
end

#idObject

Returns the value of attribute id.



4199
4200
4201
# File 'lib/adcenter_wrapper_entities.rb', line 4199

def id
  @id
end

#line1Object

Returns the value of attribute line1.



4200
4201
4202
# File 'lib/adcenter_wrapper_entities.rb', line 4200

def line1
  @line1
end

#line2Object

Returns the value of attribute line2.



4201
4202
4203
# File 'lib/adcenter_wrapper_entities.rb', line 4201

def line2
  @line2
end

#line3Object

Returns the value of attribute line3.



4202
4203
4204
# File 'lib/adcenter_wrapper_entities.rb', line 4202

def line3
  @line3
end

#line4Object

Returns the value of attribute line4.



4203
4204
4205
# File 'lib/adcenter_wrapper_entities.rb', line 4203

def line4
  @line4
end

#postalCodeObject

Returns the value of attribute postalCode.



4204
4205
4206
# File 'lib/adcenter_wrapper_entities.rb', line 4204

def postalCode
  @postalCode
end

#stateOrProvinceObject

Returns the value of attribute stateOrProvince.



4205
4206
4207
# File 'lib/adcenter_wrapper_entities.rb', line 4205

def stateOrProvince
  @stateOrProvince
end

#timeStampObject

Returns the value of attribute timeStamp.



4206
4207
4208
# File 'lib/adcenter_wrapper_entities.rb', line 4206

def timeStamp
  @timeStamp
end