洛阳学员端
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.

65 lines
1.2 KiB

7 months ago
  1. //
  2. // APRiskReportResponse.h
  3. // APPSecuritySDK
  4. //
  5. // Created by hongren on 2020/9/7.
  6. // Copyright © 2020 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface APRiskReportResponse : NSObject
  10. /**
  11. * success or not
  12. */
  13. @property(nonatomic, assign) BOOL success;
  14. /**
  15. * result code
  16. */
  17. @property(nonatomic, strong) NSString *resultCode;
  18. /**
  19. * device id
  20. */
  21. @property(nonatomic, strong) NSString *apdid;
  22. /**
  23. * apdid token
  24. */
  25. @property(nonatomic, strong) NSString *token;
  26. /**
  27. * current apdid time (create time)
  28. */
  29. @property(nonatomic, strong) NSString *currentTime;
  30. /**
  31. * rpc version
  32. */
  33. @property(nonatomic, strong) NSString *version;
  34. /**
  35. * switch for vkey
  36. */
  37. @property(nonatomic, strong) NSString *vkeySwitch;
  38. /**
  39. * switch for BugTrack
  40. */
  41. @property(nonatomic, strong) NSString *bugTrackSwitch;
  42. /**
  43. * version for applist cmd
  44. */
  45. @property(nonatomic, strong) NSString *appListVer;
  46. @property(nonatomic, strong) NSString *dynamicKey;
  47. @property(nonatomic, strong) NSDictionary *resultData;
  48. + (Class)resultDataElementClass;
  49. @end