21 lines
273 B
Go
21 lines
273 B
Go
|
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
|
||
|
}
|