GMTSVehicleAttributeKeyValuePair
@interface GMTSVehicleAttributeKeyValuePair : GMTCImmutableDataObject that contains a vehicle attribute key/value pair.
-
The key of this pair.
Declaration
Swift
var key: String { get }Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull key; -
The value of this pair.
Declaration
Swift
var value: String { get }Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull value; -
Initialization of the object.
Declaration
Swift
init(key: String, value: String)Objective-C
- (nonnull instancetype)initWithKey:(nonnull NSString *)key value:(nonnull NSString *)value;Parameters
keyThe key, should not be nil.
valueThe value, should not be nil.
-
Unavailable
Will return nil. Use
-initWithKey:value:instead.Declaration
Objective-C
- (nonnull instancetype)init;