QNRoomMediaRelayInfo.h 640 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // QNRoomMediaRelayInfo.h
  3. // QNRTCKit
  4. //
  5. // Created by tony.jing on 2021/11/3.
  6. // Copyright © 2021 Pili Engineering, Qiniu Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface QNRoomMediaRelayInfo : NSObject
  11. /*!
  12. * @abstract 跨房媒体转发 Token。
  13. *
  14. * @since v4.0.1
  15. */
  16. @property (copy, nonatomic) NSString *token;
  17. /*!
  18. * @abstract 房间名。
  19. *
  20. * @since v4.0.1
  21. */
  22. @property (copy, nonatomic) NSString *roomName;
  23. /*!
  24. * @abstract 初始化方法。
  25. *
  26. * @since v4.0.1
  27. */
  28. - (instancetype _Nonnull)initWithToken:(NSString *_Nullable)token;
  29. @end
  30. NS_ASSUME_NONNULL_END