Skip to content

Instantly share code, notes, and snippets.

@axel-andrade
Created October 11, 2021 13:29
Show Gist options
  • Save axel-andrade/aeadbb0a4a8bb4b7f5184db3b68f5990 to your computer and use it in GitHub Desktop.
Save axel-andrade/aeadbb0a4a8bb4b7f5184db3b68f5990 to your computer and use it in GitHub Desktop.
package entities
type TokenDetails struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
AccessUuid string `json:"access_uuid"`
RefreshUuid string `json:"refresh_uuid"`
AtExpires int64 `json:"at_expires"`
RtExpires int64 `json:"rt_expires"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment