summaryrefslogtreecommitdiff
path: root/golang/pkg/model/waypoint.go
blob: 7b71e6a6bde9a2964b1088c279b0ffbeb71632c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package model

type Waypoint struct {
	Chart               *Chart   `json:"chart"`
	Factions            []string `json:"factions"`
	IsUnderConstruction bool     `json:"isUnderConstruction"`
	Modifiers           []Common `json:"modifiers"`
	//orbitals: Array<{symbol: string;}>;
	//orbits: string;
	Symbol       string   `json:"symbol"`
	SystemSymbol string   `json:"systemSymbol"`
	Traits       []Common `json:"traits"`
	Type         string   `json:"type"`
	X            int      `json:"x"`
	Y            int      `json:"y"`
}