mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
16 lines
358 B
Go
16 lines
358 B
Go
|
package databag
|
||
|
|
||
|
type Account struct {
|
||
|
AccountId string `json:"accountId"`
|
||
|
Profile *Profile `json:"profile"`
|
||
|
Disabled bool `json:"disabled"`
|
||
|
}
|
||
|
|
||
|
type AccountStatus struct {
|
||
|
Disabled bool `json:"disabled"`
|
||
|
StorageUsed float64 `json:"storageUsed"`
|
||
|
StorageAvailable float64 `json:"storageAvailable"`
|
||
|
ForwardingAddress string `json:"forwardingAddress"`
|
||
|
}
|
||
|
|