class GoodDataMarketo::LoadFile

Attributes

arguments[RW]
method[RW]
name[RW]
type[RW]

Public Class Methods

new(config = {}) click to toggle source
# File lib/gooddata_marketo/models/load.rb, line 8
def initialize config = {}
  @name = config[:name]
  @type = config[:type]
  @method = config[:method]
  @arguments = {
      :ids => config[:ids] || config[:values],
      :type => config[:type]
  }
end