class Cucumber::Messages::Examples

def initialize(

def initialize(
  location: Location.new,
  tags: [],
  keyword: '',
  name: '',
  description: '',
  table_header: nil,
  table_body: [],
  id: ''
)
  @location = location
  @tags = tags
  @keyword = keyword
  @name = name
  @description = description
  @table_header = table_header
  @table_body = table_body
  @id = id
end