tokenInfo.go 379 B

1234567891011121314151617181920
  1. package model
  2. type AccessDetails struct {
  3. TokenUuid string
  4. AppId string `json:"appId"`
  5. AppSecret string `json:"appSecret"`
  6. }
  7. type UuidValue struct {
  8. AppId string `json:"appId"`
  9. AppSecret string `json:"appSecret"`}
  10. type TokenDetails struct {
  11. AccessToken string
  12. RefreshToken string
  13. TokenUuid string
  14. RefreshUuid string
  15. AtExpires int64
  16. RtExpires int64
  17. }