mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Add requested changes
This commit is contained in:
parent
b53256ca3f
commit
29343d1c6f
3 changed files with 20 additions and 20 deletions
10
account.go
10
account.go
|
|
@ -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"`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue