// SDLSetMediaClockTimer.h // #import "SDLRPCRequest.h" @class SDLStartTime; @class SDLUpdateMode; /** * Sets the media clock/timer value and the update method (e.g.count-up, * count-down, etc.) *

* Function Group: Base

* HMILevel needs to be FULL, LIMITIED or BACKGROUND *

* * Since SmartDeviceLink 1.0 */ @interface SDLSetMediaClockTimer : SDLRPCRequest { } /** * @abstract Constructs a new SDLSetMediaClockTimer object */ - (instancetype)init; /** * @abstract Constructs a new SDLSetMediaClockTimer object indicated by the NSMutableDictionary * parameter * @param dict The dictionary to use */ - (instancetype)initWithDictionary:(NSMutableDictionary *)dict; /** * @abstract A Start Time with specifying hour, minute, second values * * @discussion A startTime object with specifying hour, minute, second values *

* Notes: *

*/ @property (strong) SDLStartTime *startTime; /** * @abstract An END time of type SDLStartTime, specifying hour, minute, second values * * @discussion An SDLStartTime object with specifying hour, minute, second values */ @property (strong) SDLStartTime *endTime; /** * @abstract The media clock/timer update mode (COUNTUP/COUNTDOWN/PAUSE/RESUME) * * @discussion a Enumeration value (COUNTUP/COUNTDOWN/PAUSE/RESUME) *

* Notes: *

*/ @property (strong) SDLUpdateMode *updateMode; @end