Sha256: c355ec696f9dcf8824845f6ce69c88a5710a988180b7e7f199fde4eb2933fb50

Contents?: true

Size: 294 Bytes

Versions: 1

Compression:

Stored size: 294 Bytes

Contents

# frozen_string_literal: true

require 'dry-struct'

module TochkaCyclopsApi
  module Schemas
    module Responses
      # Response schema for echo request
      class Echo
        attr_accessor :text

        def initialize(text)
          @text = text
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tochka_cyclops_api-0.4.0 lib/tochka_cyclops_api/schemas/responses/echo.rb