LCIMOperationFailure
Objective-C
@interface LCIMOperationFailure : NSObject
@property (nonatomic, assign) NSInteger code;
@property (nonatomic, strong, nullable) NSString *reason;
@property (nonatomic, strong, nullable) NSArray<NSString *> *clientIds;
@end
Swift
class LCIMOperationFailure : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic) NSInteger code
Swift
var code: Int { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *reason
Swift
var reason: String? { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSArray<NSString *> *clientIds
Swift
var clientIds: [String]? { get set }