diff options
Diffstat (limited to 'SmartDeviceLink/SDLOnSystemRequest.h')
-rw-r--r-- | SmartDeviceLink/SDLOnSystemRequest.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/SmartDeviceLink/SDLOnSystemRequest.h b/SmartDeviceLink/SDLOnSystemRequest.h index 3b09ed9fd..236cde278 100644 --- a/SmartDeviceLink/SDLOnSystemRequest.h +++ b/SmartDeviceLink/SDLOnSystemRequest.h @@ -6,14 +6,17 @@ #import "SDLFileType.h" #import "SDLRequestType.h" +NS_ASSUME_NONNULL_BEGIN @interface SDLOnSystemRequest : SDLRPCNotification -@property (strong) SDLRequestType requestType; -@property (strong) NSString *url; -@property (strong) NSNumber<SDLInt> *timeout; -@property (strong) SDLFileType fileType; -@property (strong) NSNumber<SDLUInt> *offset; -@property (strong) NSNumber<SDLUInt> *length; +@property (strong, nonatomic) SDLRequestType requestType; +@property (nullable, strong, nonatomic) NSString *url; +@property (nullable, strong, nonatomic) NSNumber<SDLInt> *timeout; +@property (nullable, strong, nonatomic) SDLFileType fileType; +@property (nullable, strong, nonatomic) NSNumber<SDLUInt> *offset; +@property (nullable, strong, nonatomic) NSNumber<SDLUInt> *length; @end + +NS_ASSUME_NONNULL_END |