verify_information.go 497 B

1234567891011121314151617
  1. /*
  2. * @Author: LinkLeong link@icewhale.com
  3. * @Date: 2022-06-15 11:30:47
  4. * @LastEditors: LinkLeong
  5. * @LastEditTime: 2022-06-23 18:40:40
  6. * @FilePath: /CasaOS/model/system_model/verify_information.go
  7. * @Description:
  8. * @Website: https://www.casaos.io
  9. * Copyright (c) 2022 by icewhale, All Rights Reserved.
  10. */
  11. package system_model
  12. type VerifyInformation struct {
  13. RefreshToken string `json:"refresh_token"`
  14. AccessToken string `json:"access_token"`
  15. ExpiresAt int64 `json:"expires_at"`
  16. }