SyncState

Represent each possible sync state See Tech Design: Sync Engine https://app.asana.com/0/481882893211075/1204303361994831/f READY -> Sync is enabled, data will sync according to the specifications above. Next state can be IN_PROGRESS if a new sync operation stars, or OFF if user disables Sync. IN_PROGRESS -> Sync operation in progress. Next state can be FAILED if operation fails or READY if operation succeeds FAILED -> Last Sync operation failed. Next state can be IN_PROGRESS if a new operation starts or OFF if user disables Sync. OFF -> Sync is disabled. Next state can be READY if the user enabled sync for this device.

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun valueOf(value: String): SyncState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.