Exception: AdCenterWrapper::ApiBatchFault

Inherits:
StandardError
  • Object
show all
Defined in:
lib/CustomerBillingService.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(trackingId = nil, operationErrors = nil, batchErrors = nil) ⇒ ApiBatchFault

Returns a new instance of ApiBatchFault.

[View source]

188
189
190
191
192
# File 'lib/CustomerBillingService.rb', line 188

def initialize(trackingId = nil, operationErrors = nil, batchErrors = nil)
  @trackingId = trackingId
  @operationErrors = operationErrors
  @batchErrors = batchErrors
end

Instance Attribute Details

#batchErrorsObject

Returns the value of attribute batchErrors.


186
187
188
# File 'lib/CustomerBillingService.rb', line 186

def batchErrors
  @batchErrors
end

#operationErrorsObject

Returns the value of attribute operationErrors.


185
186
187
# File 'lib/CustomerBillingService.rb', line 185

def operationErrors
  @operationErrors
end

#trackingIdObject

Returns the value of attribute trackingId.


184
185
186
# File 'lib/CustomerBillingService.rb', line 184

def trackingId
  @trackingId
end