Sha256: 8a163000f74fa0ea0c8d4b03df1a927ce08bc697729a83ddbb6adf521ff55fde
Contents?: true
Size: 305 Bytes
Versions: 33
Compression:
Stored size: 305 Bytes
Contents
# coding: utf-8 # frozen_string_literal: true module Stealth class Reply attr_accessor :reply_type, :reply def initialize(unstructured_reply:) @reply_type = unstructured_reply["reply_type"] @reply = unstructured_reply end def [](key) @reply[key] end end end
Version data entries
33 entries across 33 versions & 1 rubygems