Class: AdwordsApi::V201101::DataService::ApiError

Inherits:
Object
  • Object
show all
Defined in:
lib/adwords_api/v201101/DataService.rb

Overview

ApiError abstract

  • fieldPath - SOAP::SOAPString

  • trigger - SOAP::SOAPString

  • errorString - SOAP::SOAPString

  • apiError_Type - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fieldPath = nil, trigger = nil, errorString = nil, apiError_Type = nil) ⇒ ApiError

Returns a new instance of ApiError.



203
204
205
206
207
208
# File 'lib/adwords_api/v201101/DataService.rb', line 203

def initialize(fieldPath = nil, trigger = nil, errorString = nil, apiError_Type = nil)
  @fieldPath = fieldPath
  @trigger = trigger
  @errorString = errorString
  @apiError_Type = apiError_Type
end

Instance Attribute Details

#apiError_TypeObject

Returns the value of attribute apiError_Type.



201
202
203
# File 'lib/adwords_api/v201101/DataService.rb', line 201

def apiError_Type
  @apiError_Type
end

#errorStringObject

Returns the value of attribute errorString.



200
201
202
# File 'lib/adwords_api/v201101/DataService.rb', line 200

def errorString
  @errorString
end

#fieldPathObject

Returns the value of attribute fieldPath.



198
199
200
# File 'lib/adwords_api/v201101/DataService.rb', line 198

def fieldPath
  @fieldPath
end

#triggerObject

Returns the value of attribute trigger.



199
200
201
# File 'lib/adwords_api/v201101/DataService.rb', line 199

def trigger
  @trigger
end