ActionStatus
data class ActionStatus(val success: Boolean, val errorCode: String, val result: String)
Represents the status of an operation on single user/device.
Constructors
ActionStatus | constructor(success: Boolean, errorCode: String, result: String) |
Properties
Name | Summary |
---|---|
errorCode | val errorCode: String An error message, or an empty string. |
result | val result: String The result of the action. |
success | val success: Boolean The status of the action: true if succeeded, false otherwise. |