class SealdConvertTmrAccessesResult
objc
@interface SealdConvertTmrAccessesResult : NSObject
SealdConvertTmrAccessesResult is returned when calling SealdSdk.convertTmrAccesses:token:overEncryptionKey:conversionFilters:deleteOnConvert:error:. containing the result of conversion
Members | Descriptions |
---|---|
status | Status of the conversion ok or ko . |
succeeded | The number of conversions that succeeded. |
errored | The number of conversions that failed. |
converted | IDs of the accesses that were fully converted. |
status
objc
@property (assign, readonly) NSString * status;
Status of the conversion ok
or ko
.
succeeded
objc
@property (assign, readonly) NSInteger succeeded;
The number of conversions that succeeded.
errored
objc
@property (assign, readonly) NSInteger errored;
The number of conversions that failed.
converted
objc
@property (assign, readonly) NSArray< NSString * > * converted;
IDs of the accesses that were fully converted.