Skip to content

class SealdActionStatus

objc
@interface SealdActionStatus : NSObject

SealdActionStatus represents the status of an operation on single user/device.

MembersDescriptions
successThe status of the action: true if succeeded, false otherwise.
errorCodeAn error message, or an empty string.
resultThe 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.