Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-10-28 07:48:21 +00:00
parent f5c9b477ac
commit 285526f8cc
3 changed files with 7 additions and 5 deletions

View File

@@ -95,9 +95,11 @@ type Account struct {
// unix timestamp
Updated int64 `json:"updated,string"`
// alphanumeric username
Username string `json:"username"`
VerificationDate int64 `json:"verificationDate,string"`
Verified bool `json:"verified"`
Username string `json:"username"`
// date of verification
VerificationDate int64 `json:"verificationDate,string"`
// if the account is verified
Verified bool `json:"verified"`
}
type CreateRequest struct {