1234567891011121314151617181920 |
- package model
- type AccessDetails struct {
- TokenUuid string
- AppId string `json:"appId"`
- AppSecret string `json:"appSecret"`
- }
- type UuidValue struct {
- AppId string `json:"appId"`
- AppSecret string `json:"appSecret"`}
- type TokenDetails struct {
- AccessToken string
- RefreshToken string
- TokenUuid string
- RefreshUuid string
- AtExpires int64
- RtExpires int64
- }
|