package api type User struct { ID int64 `json:"id"` Name string `json:"name"` } type UserPayload struct { *User }