Add requested changes

This commit is contained in:
IchBinLeoon 2022-05-29 15:08:38 +02:00
parent b53256ca3f
commit 29343d1c6f
3 changed files with 20 additions and 20 deletions

View file

@ -1,11 +1,13 @@
package crunchyroll
import "time"
// Account contains information about a crunchyroll account.
type Account struct {
AccountID string `json:"account_id"`
ExternalID string `json:"external_id"`
EmailVerified bool `json:"email_verified"`
Created string `json:"created"`
AccountID string `json:"account_id"`
ExternalID string `json:"external_id"`
EmailVerified bool `json:"email_verified"`
Created time.Time `json:"created"`
Avatar string `json:"avatar"`
CrBetaOptIn bool `json:"cr_beta_opt_in"`