DesktopAppAdminConfig Data Type

The desktop application system settings.

Properties
name data type description
enabled boolean Controls whether users can use the desktop application to browse the system.
allow_cached_password boolean Controls whether the desktop application should store the users password.

If true, the desktop application will give the user the option to remember his or her password

If false, the desktop application will require the user to log in each time the application starts.

max_file_size_mbs number Maximum size of file that the desktop application will sync to the desktop.
sync_interval_mins number Controls how often the desktop application will check with the server for updated configuration and new files.
Properties inherited from BaseRestObject
href string The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest).
links array of Link Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

{
  "enabled" : true,
  "allow_cached_password" : true,
  "max_file_size_mbs" : 12345,
  "sync_interval_mins" : 12345,
  "href" : "...",
  "links" : [ {
    "href" : "...",
    "rel" : "..."
  }, {
    "href" : "...",
    "rel" : "..."
  } ]
}