MBNNIncidentsOptions.h 760 B

12345678910111213141516171819202122232425
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(IncidentsOptions)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNIncidentsOptions : NSObject
  6. // This class provides custom init which should be called
  7. - (nonnull instancetype)init NS_UNAVAILABLE;
  8. // This class provides custom init which should be called
  9. + (nonnull instancetype)new NS_UNAVAILABLE;
  10. - (nonnull instancetype)initWithGraph:(nonnull NSString *)graph
  11. apiUrl:(nonnull NSString *)apiUrl;
  12. /** graph name (e.g. here/) */
  13. @property (nonatomic, readonly, nonnull, copy) NSString *graph;
  14. /** LTS incidents service API url */
  15. @property (nonatomic, readonly, nonnull, copy) NSString *apiUrl;
  16. @end