Sha256: 452760f8b137d24d4a740a1ae95d3ad22cd3946e9111f28845d16aefb84f4aae
Contents?: true
Size: 422 Bytes
Versions: 5
Compression:
Stored size: 422 Bytes
Contents
# frozen_string_literal: true module ConvenientService module Examples module Standard class 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
5 entries across 5 versions & 1 rubygems