GoogleRidesharingConsumer Framework Reference

GMTSVehicleAttributeKeyValuePair

@interface GMTSVehicleAttributeKeyValuePair : GMTCImmutableData

Object that contains a vehicle attribute key/value pair.

  • key

    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

    key

    The key, should not be nil.

    value

    The value, should not be nil.

  • Unavailable

    Will return nil. Use -initWithKey:value: instead.

    Declaration

    Objective-C

    - (nonnull instancetype)init;