class Cucumber::Messages::Tag

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    location: Location.from_h(hash[:location]),
    name: hash[:name],
    id: hash[:id],
  )
end

def initialize(

def initialize(
  location: Location.new,
  name: '',
  id: ''
)
  @location = location
  @name = name
  @id = id
end