洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
828 B

7 months ago
  1. //
  2. // ASSTokenResult.h
  3. // APPSecuritySDK
  4. //
  5. // Created by xingchen on 15/7/31.
  6. // Copyright (c) 2015年 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define ASSTokenResult ASSTokenResultCore
  10. @interface ASSTokenResult : NSObject
  11. @property (nonatomic, strong) NSString* vkeyidToken;
  12. @property (nonatomic, strong) NSString* clientKey;
  13. @property (nonatomic, strong) NSString* umidToken;
  14. @property (nonatomic, strong) NSString* vkeyid;
  15. @end
  16. @interface ASSTokenResultOpen: NSObject
  17. @property (nonatomic, strong) NSString* vkeyidToken;
  18. @property (nonatomic, strong) NSString* clientKey;
  19. @property (nonatomic, strong) NSString* vkeyid;
  20. @end
  21. /**
  22. *
  23. */
  24. @interface APRiskResult: NSObject
  25. @property (nonatomic) int resCode;
  26. @property (nonatomic, strong) NSString* resInfo;
  27. @end