MBNNChargingWaypointMetadata.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Charging waypoint metadata object from Directions API */
  4. NS_SWIFT_NAME(ChargingWaypointMetadata)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNChargingWaypointMetadata : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithType:(nonnull NSString *)type
  12. name:(nonnull NSString *)name
  13. chargeTime:(NSTimeInterval)chargeTime
  14. chargeTo:(uint32_t)chargeTo
  15. chargeAtArrival:(uint32_t)chargeAtArrival
  16. plugType:(nonnull NSString *)plugType
  17. powerKw:(uint32_t)powerKw
  18. stationId:(nonnull NSString *)stationId;
  19. @property (nonatomic, readonly, nonnull, copy) NSString *type;
  20. @property (nonatomic, readonly, nonnull, copy) NSString *name;
  21. @property (nonatomic, readonly) NSTimeInterval chargeTime;
  22. @property (nonatomic, readonly) uint32_t chargeTo;
  23. @property (nonatomic, readonly) uint32_t chargeAtArrival;
  24. @property (nonatomic, readonly, nonnull, copy) NSString *plugType;
  25. @property (nonatomic, readonly) uint32_t powerKw;
  26. @property (nonatomic, readonly, nonnull, copy) NSString *stationId;
  27. - (BOOL)isEqualToChargingWaypointMetadata:(nonnull MBNNChargingWaypointMetadata *)other;
  28. @end