diff options
Diffstat (limited to 'SmartDeviceLink/SDLOnEncodedSyncPData.h')
-rw-r--r-- | SmartDeviceLink/SDLOnEncodedSyncPData.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLOnEncodedSyncPData.h b/SmartDeviceLink/SDLOnEncodedSyncPData.h index d0a2b218c..9bcbdae45 100644 --- a/SmartDeviceLink/SDLOnEncodedSyncPData.h +++ b/SmartDeviceLink/SDLOnEncodedSyncPData.h @@ -3,11 +3,14 @@ #import "SDLRPCNotification.h" +NS_ASSUME_NONNULL_BEGIN @interface SDLOnEncodedSyncPData : SDLRPCNotification -@property (strong) NSMutableArray<NSString *> *data; -@property (strong) NSString *URL; -@property (strong) NSNumber<SDLInt> *Timeout; +@property (strong, nonatomic) NSMutableArray<NSString *> *data; +@property (nullable, strong, nonatomic) NSString *URL; +@property (nullable, strong, nonatomic) NSNumber<SDLInt> *Timeout; @end + +NS_ASSUME_NONNULL_END |