Class: AdCenterWrapper::GoalError

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

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(batchErrors = nil, index = nil, stepErrors = nil) ⇒ GoalError

Returns a new instance of GoalError.

[View source]

1437
1438
1439
1440
1441
# File 'lib/CampaignManagementService.rb', line 1437

def initialize(batchErrors = nil, index = nil, stepErrors = nil)
  @batchErrors = batchErrors
  @index = index
  @stepErrors = stepErrors
end

Instance Attribute Details

#batchErrorsObject

Returns the value of attribute batchErrors.


1433
1434
1435
# File 'lib/CampaignManagementService.rb', line 1433

def batchErrors
  @batchErrors
end

#indexObject

Returns the value of attribute index.


1434
1435
1436
# File 'lib/CampaignManagementService.rb', line 1434

def index
  @index
end

#stepErrorsObject

Returns the value of attribute stepErrors.


1435
1436
1437
# File 'lib/CampaignManagementService.rb', line 1435

def stepErrors
  @stepErrors
end