// SDLResetGlobalProperties.h // #import "SDLRPCRequest.h" #import "SDLGlobalProperty.h" /** * Resets the passed global properties to their default values as defined by * SDL *

* The HELPPROMPT global property default value is generated by SDL consists of * the first vrCommand of each Command Menu item defined at the moment PTT is * pressed
* The TIMEOUTPROMPT global property default value is the same as the HELPPROMPT * global property default value *

* HMILevel needs to be FULL, LIMITED or BACKGROUND *

* * Since SmartDeviceLink 1.0 * See SetGlobalProperties */ NS_ASSUME_NONNULL_BEGIN @interface SDLResetGlobalProperties : SDLRPCRequest /// Convenience init to reset global properties. /// /// @param properties An array of one or more GlobalProperty enumeration elements /// @return An SDLResetGlobalProperties object - (instancetype)initWithProperties:(NSArray *)properties; /** * An array of one or more GlobalProperty enumeration elements * indicating which global properties to reset to their default value */ @property (strong, nonatomic) NSArray *properties; @end NS_ASSUME_NONNULL_END