class SealdActionStatus
objc
@interface SealdActionStatus : NSObjectSealdActionStatus represents the status of an operation on single user/device.
| Members | Descriptions |
|---|---|
success | The status of the action: true if succeeded, false otherwise. |
errorCode | An error message, or an empty string. |
result | The result of the action. |
success
objc
@property (assign) bool success;The status of the action: true if succeeded, false otherwise.
errorCode
objc
@property (strong) NSString * errorCode;An error message, or an empty string.
result
objc
@property (strong) NSString * result;The result of the action.