point-api-go/token.go

9 lines
225 B
Go
Raw Normal View History

package point
2016-03-29 07:50:49 +00:00
// Token represents the login API method response and contains important login data
type Token struct {
AuthToken string `json:"token"`
CsRfToken string `json:"csrf_token"`
Error string `json:"error"`
}