point-api-go/user.go

8 lines
142 B
Go
Raw Normal View History

package point
2016-03-29 07:50:49 +00:00
// User represents the user object in API response
type User struct {
Id int `json:"id"`
Login string `json:"login"`
}