class Cucumber::Messages::PickleStepArgument

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    doc_string: PickleDocString.from_h(hash[:docString]),
    data_table: PickleTable.from_h(hash[:dataTable]),
  )
end

def initialize(

def initialize(
  doc_string: nil,
  data_table: nil
)
  @doc_string = doc_string
  @data_table = data_table
end