// SDLAlertManeuver.h // #import "SDLRPCRequest.h" @class SDLSoftButton; @class SDLTTSChunk; /** * @since SmartDeviceLink 1.0 */ NS_ASSUME_NONNULL_BEGIN @interface SDLAlertManeuver : SDLRPCRequest - (instancetype)initWithTTS:(nullable NSString *)ttsText softButtons:(nullable NSArray *)softButtons; - (instancetype)initWithTTSChunks:(nullable NSArray *)ttsChunks softButtons:(nullable NSArray *)softButtons; @property (nullable, strong, nonatomic) NSArray *ttsChunks; @property (nullable, strong, nonatomic) NSArray *softButtons; @end NS_ASSUME_NONNULL_END