mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2025-03-27 18:12:39 +00:00
9 lines
225 B
Go
9 lines
225 B
Go
package point
|
|
|
|
// 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"`
|
|
}
|