1 package btcjson
2 3 // VersionResult models objects included in the version response. In the actual result, these objects are keyed by the program or API name. NOTE: This is a btcsuite extension ported from github.com/decred/dcrd/dcrjson.
4 type VersionResult struct {
5 VersionString string `json:"versionstring"`
6 Major uint32 `json:"major"`
7 Minor uint32 `json:"minor"`
8 Patch uint32 `json:"patch"`
9 Prerelease string `json:"prerelease"`
10 BuildMetadata string `json:"buildmetadata"`
11 }
12