MBNNAdminInfo.h 826 B

12345678910111213141516171819202122232425
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(AdminInfo)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNAdminInfo : 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)initWithIso_3166_1_alpha3:(nonnull NSString *)iso_3166_1_alpha3
  11. iso_3166_1:(nonnull NSString *)iso_3166_1;
  12. /** ISO-3166-1-alpha-3 (3-letter country name) */
  13. @property (nonatomic, readonly, nonnull, copy) NSString *iso_3166_1_alpha3;
  14. /** ISO-3166-1 (2-letter country name) */
  15. @property (nonatomic, readonly, nonnull, copy) NSString *iso_3166_1;
  16. @end