// SDLMenuParams.h // #import "SDLRPCMessage.h" /** * Used when adding a sub menu to an application menu or existing sub menu. * * @since SDL 1.0 */ NS_ASSUME_NONNULL_BEGIN @interface SDLMenuParams : SDLRPCStruct - (instancetype)initWithMenuName:(NSString *)menuName; - (instancetype)initWithMenuName:(NSString *)menuName parentId:(UInt32)parentId position:(UInt16)position; /** * @abstract the unique ID of an existing submenu to which a command will be added * @discussion If this element is not provided, the command will be added to the top level of the Command Menu. * * Optional, Integer, 0 - 2,000,000,000 */ @property (nullable, strong, nonatomic) NSNumber *parentID; /** * @abstract The position within the items of the parent Command Menu * @discussion 0 will insert at the front, 1 will insert after the first existing element, etc. * * Position of any submenu will always be located before the return and exit options. * * * If position is greater or equal than the number of items in the parent Command Menu, the sub menu will be appended to the end of that Command Menu. * * * If this element is omitted, the entry will be added at the end of the parent menu. * * Optional, Integer, 0 - 1000 */ @property (nullable, strong, nonatomic) NSNumber *position; /** * @abstract the menu name which appears in menu, representing this command * * Required, max length 500 characters */ @property (strong, nonatomic) NSString *menuName; @end NS_ASSUME_NONNULL_END