class Cucumber::Messages::ParameterType

def initialize(

def initialize(
  name: '',
  regular_expressions: [],
  prefer_for_regular_expression_match: false,
  use_for_snippets: false,
  id: '',
  source_reference: nil
)
  @name = name
  @regular_expressions = regular_expressions
  @prefer_for_regular_expression_match = prefer_for_regular_expression_match
  @use_for_snippets = use_for_snippets
  @id = id
  @source_reference = source_reference
end