// // SDLSpatialStruct.h // SmartDeviceLink-iOS // // Created by Nicole on 8/3/17. // Copyright © 2017 smartdevicelink. All rights reserved. // #import "SDLRPCStruct.h" NS_ASSUME_NONNULL_BEGIN /** * Defines spatial for each user control object for video streaming application */ @interface SDLSpatialStruct : SDLRPCStruct - (instancetype)initWithId:(UInt32)id x:(NSNumber *)x y:(NSNumber *)y width:(NSNumber *)width height:(NSNumber *)height; /** * A user control spatial identifier * Required, Integer, 0 - 2,000,000,000 */ @property (strong, nonatomic) NSNumber *id; /** * The X-coordinate of the user control * Required, Float */ @property (strong, nonatomic) NSNumber *x; /** * The Y-coordinate of the user control * Required, Float */ @property (strong, nonatomic) NSNumber *y; /** * The width of the user control's bounding rectangle * Required, Float */ @property (strong, nonatomic) NSNumber *width; /** * The height of the user control's bounding rectangle * Required, Float */ @property (strong, nonatomic) NSNumber *height; @end NS_ASSUME_NONNULL_END