Spatio.Model.FilesAndFoldersResponse (spatio_sdk v0.0.2)

Aggregated {files, folders, accounts} envelope used by the renderer's file-browser. Calls ListFiles and ListFolders in parallel and merges the results — saves a round-trip when the UI shows both side-by-side.

Summary

Types

t()

@type t() :: %Spatio.Model.FilesAndFoldersResponse{
  accounts: [Spatio.Model.AccountStatus.t()] | nil,
  files: [Spatio.Model.SpatioFile.t()] | nil,
  folders: [Spatio.Model.Folder.t()] | nil,
  hasMore: boolean(),
  nextOffset: integer() | nil,
  total: integer()
}

Functions

decode(value)