mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-16 12:26:25 +00:00
22 lines
616 B
Go
22 lines
616 B
Go
|
package types
|
||
|
|
||
|
type User struct {
|
||
|
Enabled string `json:"enabled"`
|
||
|
ID string `json:"id"`
|
||
|
Quota struct {
|
||
|
Free int64 `json:"free"`
|
||
|
Used int `json:"used"`
|
||
|
Total int64 `json:"total"`
|
||
|
Relative float64 `json:"relative"`
|
||
|
Quota int `json:"quota"`
|
||
|
} `json:"quota"`
|
||
|
Email string `json:"email"`
|
||
|
Displayname string `json:"displayname"`
|
||
|
Phone string `json:"phone"`
|
||
|
Address string `json:"address"`
|
||
|
Website string `json:"website"`
|
||
|
Twitter string `json:"twitter"`
|
||
|
Groups []string `json:"groups"`
|
||
|
Language string `json:"language"`
|
||
|
}
|