Guest User

Untitled

a guest
Apr 8th, 2020
2,169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 3.83 KB | None | 0 0
  1. type SendXLogReportRequestPayload struct {
  2.     Dpod struct {
  3.         Pod string `json:"pod"`
  4.     } `json:"dpod"`
  5.     P1      string        `json:"p1"`
  6.     P2      string        `json:"p2"`
  7.     Ut      int           `json:"ut"`
  8.     Ait     int           `json:"ait"`
  9.     Pkg     string        `json:"pkg"`
  10.     Fp      string        `json:"fp"`
  11.     Vc      int           `json:"vc"`
  12.     Vpn     int           `json:"vpn"`
  13.     Wifisid string        `json:"wifisid"`
  14.     Wifimac string        `json:"wifimac"`
  15.     Wifip   string        `json:"wifip"`
  16.     Aplist  []string      `json:"aplist"`
  17.     Route   struct {
  18.         Iip  string `json:"iip"`
  19.         Gip  string `json:"gip"`
  20.         Ghw  string `json:"ghw"`
  21.         Type string `json:"type"`
  22.     } `json:"route"`
  23.     Location string        `json:"location"`
  24.     Apps     []string      `json:"apps"`
  25.     MdiIf    struct {
  26.     } `json:"mdi_if"`
  27.     Extra string `json:"extra"`
  28.     Hw    struct {
  29.         Brand   string `json:"brand"`
  30.         Model   string `json:"model"`
  31.         Board   string `json:"board"`
  32.         Device  string `json:"device"`
  33.         Product string `json:"product"`
  34.         Display string `json:"display"`
  35.         Dpi     int    `json:"dpi"`
  36.         Bat     int    `json:"bat"`
  37.         CPU     struct {
  38.             Core int    `json:"core"`
  39.             Hw   string `json:"hw"`
  40.             Max  string `json:"max"`
  41.             Min  string `json:"min"`
  42.             Ft   string `json:"ft"`
  43.         } `json:"cpu"`
  44.         Mem struct {
  45.             RAM string `json:"ram"`
  46.             Rom string `json:"rom"`
  47.         } `json:"mem"`
  48.     } `json:"hw"`
  49.     ID struct {
  50.         I      int    `json:"i"`
  51.         R      string `json:"r"`
  52.         Imei   string `json:"imei"`
  53.         Imsi   string `json:"imsi"`
  54.         Adid   string `json:"adid"`
  55.         AdidEx string `json:"adid_ex"`
  56.         Mac    string `json:"mac"`
  57.         Serial string `json:"serial"`
  58.     } `json:"id"`
  59.     Emulator struct {
  60.         Sig  int           `json:"sig"`
  61.         Cb   int           `json:"cb"`
  62.         Cid  int           `json:"cid"`
  63.         Br   string        `json:"br"`
  64.         File []string      `json:"file"`
  65.         Prop []string      `json:"prop"`
  66.     } `json:"emulator"`
  67.     Env struct {
  68.         Ver           string        `json:"ver"`
  69.         Tag           string        `json:"tag"`
  70.         Pkg           string        `json:"pkg"`
  71.         Tz            string        `json:"tz"`
  72.         Ml            string        `json:"ml"`
  73.         UID           int           `json:"uid"`
  74.         Rebuild       int           `json:"rebuild"`
  75.         Jd            int           `json:"jd"`
  76.         Dbg           int           `json:"dbg"`
  77.         Tid           int           `json:"tid"`
  78.         Xposed        int           `json:"xposed"`
  79.         Hk            []string      `json:"hk"`
  80.         Su            int           `json:"su"`
  81.         Sp            string        `json:"sp"`
  82.         RoSecureS     string        `json:"ro.secure_s"`
  83.         RoDebuggableS string        `json:"ro.debuggable_s"`
  84.         Click         string        `json:"click"`
  85.         Hph           string        `json:"hph"`
  86.         Hpp           string        `json:"hpp"`
  87.         Mc            int           `json:"mc"`
  88.         Fc            int           `json:"fc"`
  89.         Jexp          int           `json:"jexp"`
  90.         Frida         int           `json:"frida"`
  91.         Cydia         int           `json:"cydia"`
  92.         Vapp          string        `json:"vapp"`
  93.     } `json:"env"`
  94.     Extension struct {
  95.         Bt      int    `json:"bt"`
  96.         Notify  int    `json:"notify"`
  97.         Sign    string `json:"sign"`
  98.         Bytes64 string `json:"bytes64"`
  99.     } `json:"extension"`
  100.     Rl struct {
  101.     } `json:"rl"`
  102.     Ssp struct {
  103.     } `json:"ssp"`
  104.     Grilock string `json:"grilock"`
  105. }
Advertisement
Add Comment
Please, Sign In to add comment