package hp88_json type CustomData struct { Tw float64 `json:"tw"` Sstw float64 `json:"sstw"` Fsci int `json:"fsci"` Fsmi int `json:"fsmi"` FreeTotal int `json:"freeTotal"` TotalWin float64 `json:"totalWin"` SpinImage []*ImagesItem `json:"spinImage"` Idx int `json:"idx"` } type Images struct { Si []*ImagesItem `json:"si"` } type ImagesItem struct { Cards [][]int `json:"cards"` Coronas [][]int `json:"coronas"` 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"` IsScatter bool `json:"isScatter"` IsFree bool `json:"isFree"` IsFu bool `json:"isFu"` CoronaNum int `json:"coronaNum"` NormalWin float64 `json:"normalWin"` }