class Cucumber::Messages::PickleDocString
Attributes
Public Class Methods
Source
# File lib/cucumber/messages.deserializers.rb, line 634 def self.from_h(hash) return nil if hash.nil? self.new( media_type: hash[:mediaType], content: hash[:content], ) 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... ...>
Source
# File lib/cucumber/messages.dtos.rb, line 1144 def initialize( media_type: nil, content: '' ) @media_type = media_type @content = content end