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

68 lines
1.4 KiB

7 months ago
  1. //
  2. // APRiskReportRequest.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 APRiskReportRequest : NSObject
  10. /**
  11. * os type: android|ios"
  12. */
  13. @property(nonatomic, strong) NSString *os;
  14. /**
  15. * device id for ios for static report, or device id for dynamic report both for ios and android
  16. */
  17. @property(nonatomic, strong) NSString *apdid;
  18. /**
  19. * public region device id for android for static report
  20. */
  21. @property(nonatomic, strong) NSString *pubApdid;
  22. /**
  23. * private region device id for android for static report
  24. */
  25. @property(nonatomic, strong) NSString *priApdid;
  26. /**
  27. * apdid token
  28. */
  29. @property(nonatomic, strong) NSString *token;
  30. /**
  31. * umid token
  32. */
  33. @property(nonatomic, strong) NSString *umidToken;
  34. /**
  35. * rpc version
  36. */
  37. @property(nonatomic, strong) NSString *version;
  38. /**
  39. * last apdid time (create time)
  40. */
  41. @property(nonatomic, strong) NSString *lastTime;
  42. /**
  43. * dynamicKey
  44. */
  45. @property(nonatomic,strong) NSString* dynamicKey;
  46. /**
  47. * device info map
  48. */
  49. @property(nonatomic, strong) NSDictionary *dataMap;
  50. + (Class)dataMapElementClass;
  51. @property(nonatomic,strong) NSDictionary *bizData;
  52. + (Class)bizDataElementClass;
  53. @end