TTAvailability

Objective-C

@interface TTAvailability : NSObject

Swift

class TTAvailability : NSObject

Public Preview

This is under Public Preview and subject to change by the end of 2020.12. More information is available at: https://developer.tomtom.com/public-preview

Represents the availability data for a connector.

  • The number of charging points that are available.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger available;

    Swift

    var available: Int { get }
  • The number of charging points that are occupied.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger occupied;

    Swift

    var occupied: Int { get }
  • The number of charging points that are reserved.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger reserved;

    Swift

    var reserved: Int { get }
  • The number of charging points whose availability data is not known.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger unknown;

    Swift

    var unknown: Int { get }
  • The number of charging points that are out of service.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger outOfService;

    Swift

    var outOfService: Int { get }