Sha256: 5796fb38379decb2dc833ddab8e07193cbab695fc29c1f4dc70549cb311116fa
Contents?: true
Size: 459 Bytes
Versions: 18
Compression:
Stored size: 459 Bytes
Contents
module DropboxApi::Results class ListFolderLongpollResult < DropboxApi::Results::Base # Indicates whether new changes are available. If true, call # `list_folder_continue` to retrieve the changes. def changes @data["changes"].to_s == "true" end # If present, backoff for at least this many seconds before calling # `list_folder_longpoll` again. This field is optional. def backoff @data["backoff"] end end end
Version data entries
18 entries across 18 versions & 1 rubygems