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