summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGrid.h
blob: 64ad01e2f1c4e61d2e7992e71463954d3c21e812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
//  SDLGrid.h
//  SmartDeviceLink
//
//  Created by standa1 on 7/10/19.
//  Copyright © 2019 smartdevicelink. All rights reserved.
//

#import "SDLRPCMessage.h"

NS_ASSUME_NONNULL_BEGIN

/**
 * Describes a location (origin coordinates and span) of a vehicle component.
 */
@interface SDLGrid : SDLRPCStruct

/**
 *
 * Required, Integer, -1 - 100
 */
@property (strong, nonatomic) NSNumber<SDLInt> *col;

/**
 *
 * Required, Integer, -1 - 100
 */
@property (strong, nonatomic) NSNumber<SDLInt> *row;

/**
 *
 * Optional, Integer, -1 - 100
 */
@property (strong, nonatomic, nullable) NSNumber<SDLInt> *level;

/**
 *
 * Optional, Integer, 1 - 100
 */
@property (strong, nonatomic, nullable) NSNumber<SDLInt> *colspan;

/**
 *
 * Optional, Integer, 1 - 100
 */
@property (strong, nonatomic, nullable) NSNumber<SDLInt> *rowspan;

/**
 *
 * Optional, Integer, 1 - 100
 */
@property (strong, nonatomic, nullable) NSNumber<SDLInt> *levelspan;

@end

NS_ASSUME_NONNULL_END