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

Version Path
convenient_service-0.17.0 lib/convenient_service/examples/standard/request_params/entities/request.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/request_params/entities/request.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/request_params/entities/request.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/request_params/entities/request.rb
convenient_service-0.13.0 lib/convenient_service/examples/standard/request_params/entities/request.rb