Sha256: 66c3bc8ac5f411b84ef46bcfb1371e098cc6150ba2221674e460c872a2f632ac

Contents?: true

Size: 392 Bytes

Versions: 5

Compression:

Stored size: 392 Bytes

Contents

module PostmanMta
  module Archive
    class Conversation < PostmanMta::Conversation
      def index(params = {})
        get('/archive/conversations', body: params)
      end

      def find(conversation_id)
        get("/archive/conversations/#{conversation_id}")
      end

      def move(params = {})
        patch('/archive/conversations/move', body: params)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
postman_mta-0.2.8 app/models/postman_mta/archive/conversation.rb
postman_mta-0.2.7 app/models/postman_mta/archive/conversation.rb
postman_mta-0.2.6 app/models/postman_mta/archive/conversation.rb
postman_mta-0.2.4 app/models/postman_mta/archive/conversation.rb
postman_mta-0.2.3 app/models/postman_mta/archive/conversation.rb