MBXResourceLoadOptions_Internal.h 1.0 KB

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxCommon/MBXNetworkRestriction.h>
  4. #import <MapboxCommon/MBXResourceLoadFlags_Internal.h>
  5. NS_SWIFT_NAME(ResourceLoadOptions)
  6. __attribute__((visibility ("default")))
  7. @interface MBXResourceLoadOptions : NSObject
  8. // This class provides custom init which should be called
  9. - (nonnull instancetype)init NS_UNAVAILABLE;
  10. // This class provides custom init which should be called
  11. + (nonnull instancetype)new NS_UNAVAILABLE;
  12. - (nonnull instancetype)initWithTag:(nonnull NSString *)tag
  13. flags:(MBXResourceLoadFlags)flags
  14. networkRestriction:(MBXNetworkRestriction)networkRestriction
  15. extraOptions:(nullable id)extraOptions;
  16. @property (nonatomic, readonly, nonnull, copy) NSString *tag;
  17. @property (nonatomic, readonly) MBXResourceLoadFlags flags;
  18. @property (nonatomic, readonly) MBXNetworkRestriction networkRestriction;
  19. @property (nonatomic, readonly, nullable, copy) id extraOptions;
  20. @end