MAMediatedNetworkInfo.h 814 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // MAMediatedNetworkInfo.h
  3. // AppLovinSDK
  4. //
  5. // Created by Ritam Sarmah on 2/8/21.
  6. //
  7. NS_ASSUME_NONNULL_BEGIN
  8. /**
  9. * This class represents information for a mediated network.
  10. */
  11. @interface MAMediatedNetworkInfo : NSObject
  12. /**
  13. * The name of the mediated network.
  14. */
  15. @property (nonatomic, copy, readonly) NSString *name;
  16. /**
  17. * The class name of the adapter for the mediated network.
  18. */
  19. @property (nonatomic, copy, readonly) NSString *adapterClassName;
  20. /**
  21. * The version of the adapter for the mediated network.
  22. */
  23. @property (nonatomic, copy, readonly) NSString *adapterVersion;
  24. /**
  25. * The version of the mediated network’s SDK.
  26. */
  27. @property (nonatomic, copy, readonly) NSString *sdkVersion;
  28. - (instancetype)init NS_UNAVAILABLE;
  29. + (instancetype)new NS_UNAVAILABLE;
  30. @end
  31. NS_ASSUME_NONNULL_END