Superclass of RPC responses
The correlation id of the corresponding SDLRPCRequest.
@property (nonatomic, strong) NSNumber<SDLInt> *_Nonnull correlationID;
var correlationID: NSNumber & SDLInt { get set }
Whether or not the SDLRPCRequest was successful.
@property (nonatomic, strong) NSNumber<SDLBool> *_Nonnull success;
var success: NSNumber & SDLBool { get set }
The result of the SDLRPCRequest. If the request failed, the result code contains the failure reason.
@property (nonatomic, strong) SDLResult _Nonnull resultCode;
var resultCode: SDLResult { get set }
More detailed success or error message.
@property (nonatomic, strong, nullable) NSString *info;
var info: String? { get set }