package ppfl_json // easyjson type ImagesItem struct { Cards [][]int `json:"cards"` WinGold float64 `json:"winGold"` TumbleWinGold float64 `json:"tumbleWinGold"` FreeGold float64 `json:"freeGold"` FreeSpins int `json:"freeSpins"` GainedFreeSpins int `json:"gainedFreeSpins"` WonFreeSpins bool `json:"wonFreeSpins"` WinCards [][]int `json:"winCards"` Mul int `json:"mul"` FinalMul int `json:"finalMul"` TotalWinGold float64 `json:"totalWinGold"` } // easyjson type Images struct { Si []*ImagesItem `json:"si"` } // easyjson type CustomData struct { //totalwin Tw float64 //singleSpinTotalWin Sstw float64 //freeSpinCountIndex Fsci int //freespinMulIndex Fsmi int SpinImage []*ImagesItem HitRateType int FreeTimeType int NewTypeNum int AxleIndex int }