MBNNIncidentCongestion.h 871 B

1234567891011121314151617181920212223242526
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxNavigationNative/MBNNIncidentCongestionDescription.h>
  4. NS_SWIFT_NAME(IncidentCongestion)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNIncidentCongestion : 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)initWithValue:(nullable NSNumber *)value
  12. description:(MBNNIncidentCongestionDescription)description;
  13. /** value of congestion: 0-100 */
  14. @property (nonatomic, readonly, nullable) NSNumber *value;
  15. /** description of incident congestion */
  16. @property (nonatomic, readonly) MBNNIncidentCongestionDescription description;
  17. @end