EMDeviceConfig.h 928 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * \~chinese
  3. * @header EMDeviceConfig.h
  4. * @abstract 已登录设备的信息类。
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMDeviceConfig.h
  10. * @abstract The information of the device.
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #import <Foundation/Foundation.h>
  15. /**
  16. * \~chinese
  17. * 登录设备配置信息。
  18. *
  19. * \~english
  20. * The configurations of the device that the user logs into.
  21. */
  22. @interface EMDeviceConfig : NSObject
  23. /**
  24. * \~chinese
  25. * 设备资源描述。
  26. *
  27. * \~english
  28. * The device resources.
  29. */
  30. @property (nonatomic, readonly) NSString * _Nullable resource;
  31. /**
  32. * \~chinese
  33. * 设备的 UUID。
  34. *
  35. * \~english
  36. * The device UUID.
  37. */
  38. @property (nonatomic, readonly) NSString * _Nullable deviceUUID;
  39. /**
  40. * \~chinese
  41. * 设备名称。
  42. *
  43. * \~english
  44. * The device name.
  45. */
  46. @property (nonatomic, readonly) NSString * _Nullable deviceName;
  47. @end