Objects
Objects can be defined using a regular Go struct.
type User struct {    ID   int    `json:"id"`    Name string `json:"name"`}For more info on field definitions, see Field Definitions.
Objects can be defined using a regular Go struct.
type User struct {    ID   int    `json:"id"`    Name string `json:"name"`}For more info on field definitions, see Field Definitions.