Class: AdCenterWrapper::BatchError

Inherits:
Object
  • Object
show all
Defined in:
lib/adcenter_wrapper_entities.rb,
lib/adcenter_wrapper_entities.rb,
lib/adcenter_wrapper_entities.rb

Overview

https://adcenter.microsoft.com/v7BatchError

code - SOAP::SOAPInt
details - SOAP::SOAPString
errorCode - SOAP::SOAPString
index - SOAP::SOAPInt
message - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code = nil, details = nil, errorCode = nil, index = nil, message = nil) ⇒ BatchError

Returns a new instance of BatchError.



224
225
226
227
228
229
230
# File 'lib/adcenter_wrapper_entities.rb', line 224

def initialize(code = nil, details = nil, errorCode = nil, index = nil, message = nil)
  @code = code
  @details = details
  @errorCode = errorCode
  @index = index
  @message = message
end

Instance Attribute Details

#codeObject

Returns the value of attribute code.



218
219
220
# File 'lib/adcenter_wrapper_entities.rb', line 218

def code
  @code
end

#detailsObject

Returns the value of attribute details.



219
220
221
# File 'lib/adcenter_wrapper_entities.rb', line 219

def details
  @details
end

#errorCodeObject

Returns the value of attribute errorCode.



220
221
222
# File 'lib/adcenter_wrapper_entities.rb', line 220

def errorCode
  @errorCode
end

#indexObject

Returns the value of attribute index.



221
222
223
# File 'lib/adcenter_wrapper_entities.rb', line 221

def index
  @index
end

#messageObject

Returns the value of attribute message.



222
223
224
# File 'lib/adcenter_wrapper_entities.rb', line 222

def message
  @message
end