Sha256: 93266a2ac80275b28ce68795fe4c83f793391c923df3d0aaea69f70f092df0e5

Contents?: true

Size: 528 Bytes

Versions: 4

Compression:

Stored size: 528 Bytes

Contents

module CallRecorderApi
    module Model

        class GetMessagesResponse

            attr_accessor :status
            attr_accessor :msgs

            def initialize(
                status,
                msgs
            )
                @status = status
                @msgs = msgs
            end

            def to_s
                'GetMessagesResponse{' +
                    'status=' + status.to_s + ', ' +
                    'msgs=' + msgs.to_s +
                '}'
            end

        end

    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
call-recorder-api-1.2.0 lib/call_recorder_api/model/get_messages_response.rb
call-recorder-api-1.1.0 lib/call_recorder_api/model/get_messages_response.rb
call-recorder-api-1.0.1 lib/call_recorder_api/model/get_messages_response.rb
call-recorder-api-1.0.0 lib/call_recorder_api/model/get_messages_response.rb