QYSource.h 741 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // QYSource.h
  3. // QYSDK
  4. //
  5. // Created by Netease on 12/21/15.
  6. // Copyright (c) 2017 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 会话来源信息
  11. */
  12. @interface QYSource : NSObject
  13. /**
  14. * 来源标题
  15. * @discussion title可对应管理后台“App核心页面列表”中“页面名称”(v5.10.0)
  16. */
  17. @property (nonatomic, copy) NSString *title;
  18. /**
  19. * 来源链接
  20. * @discussion urlString可对应管理后台“App核心页面列表”中“页面链接”(v5.10.0)
  21. * @discussion 此处不做链接相关校验,可传任意字符串
  22. */
  23. @property (nonatomic, copy) NSString *urlString;
  24. /**
  25. * 来源自定义信息
  26. */
  27. @property (nonatomic, copy) NSString *customInfo;
  28. @end