LastKnownGoodDTO
LastKnownGoodDTO describes the Last Known Good marker of an instance and how the current configuration differs from it. SnapshotID is present only when a restorable snapshot captures the marker and one-click recovery is possible.
Kind
struct
Fields
| Go field | JSON field | Go type | TypeScript type | Optional | Nullable |
|---|---|---|---|---|---|
RecordedAt | recordedAt | string | string | No | No |
GameVersion | gameVersion | string | string | No | No |
ModCount | modCount | int | number | No | No |
SnapshotID | snapshotId | string | string | Yes | No |
SnapshotExists | snapshotExists | bool | boolean | No | No |
MatchesCurrent | matchesCurrent | bool | boolean | No | No |
ChangeCount | changeCount | int | number | No | No |
Changes | changes | ConfigurationChangesDTO | ConfigurationChangesDTO | No | No |
Used by
- LastKnownGoodController.GetInstanceLastKnownGood — return value
Related types
Source
internal/transport/wails/lastknown_dto.go:26