lib/cucumber/messages/pickle_doc_string.rb
# frozen_string_literal: true # The code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/codegen/codegen.rb] module Cucumber module Messages ## # Represents the PickleDocString message in Cucumber's {message protocol}[https://github.com/cucumber/messages]. ## ## class PickleDocString < Message attr_reader :media_type attr_reader :content def initialize( media_type: nil, content: '' ) @media_type = media_type @content = content super() end ## # Returns a new PickleDocString from the given hash. # If the hash keys are camelCased, they are properly assigned to the # corresponding snake_cased attributes. # # Cucumber::Messages::PickleDocString.from_h(some_hash) # => #<Cucumber::Messages::PickleDocString:0x... ...> ## def self.from_h(hash) return nil if hash.nil? new( media_type: hash[:mediaType], content: hash[:content] ) end end end end