Sha256: fea4968efea8d487e4855420f0b3f2028c315fb19139e35e79239957536ad347
Contents?: true
Size: 423 Bytes
Versions: 8
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true module ConvenientService module Examples module Standard module RequestParams module Entities class Request attr_reader :http_string def initialize(http_string:) @http_string = http_string end def to_s http_string end end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems