module Pushbullet::Texts

Public Instance Methods

texts(params: {}, cursor: nil) click to toggle source
# File lib/pushbullet/texts.rb, line 3
def texts(params: {}, cursor: nil)
  params = process_cursor(cursor, params: params)
  path = 'texts'
  authorise_and_send(http_method: :get, path: path, params: params)
end