You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
331 B
13 lines
331 B
package model |
|
|
|
// Token user access token. |
|
type Token struct { |
|
Mid int64 `json:"mid"` |
|
Appid int64 `json:"appid"` |
|
Subid int64 `json:"appSubid"` |
|
Token string `json:"accessToken"` |
|
RToken string `json:"refreshToken"` |
|
CTime int64 `json:"createAt"` |
|
Expires int64 `json:"expires"` |
|
Type int64 `json:"type"` |
|
}
|
|
|