mlblive/internal/statsapi/patch.go

21 lines
273 B
Go
Raw Normal View History

2024-07-02 04:16:44 +00:00
package statsapi
type DiffPatchParams struct {
GamePk string
StartTimecode string
PushUpdateId string
}
type DiffPatchResponse []Patch
type Patch struct {
Diff []instruction
}
type instruction struct {
Op string
Path string
Value any
From string
}