SSDKSession.h 444 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SSDKSession.h
  3. // ShareSDK
  4. //
  5. // Created by Max on 2018/7/27.
  6. // Copyright © 2018年 掌淘科技. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface SSDKSession : NSObject
  10. /**
  11. 会话是否被主动取消
  12. */
  13. @property (assign, nonatomic, readonly) BOOL isCancelled;
  14. /**
  15. session的目标平台
  16. */
  17. @property (assign, nonatomic) NSInteger platformType;
  18. /**
  19. 主动取消此次会话
  20. */
  21. - (void) cancel;
  22. @end