mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-01 01:41:21 -05:00
34 lines
1.2 KiB
Go
34 lines
1.2 KiB
Go
package data
|
|
|
|
// Users holds user ids for the user listing
|
|
type Users struct {
|
|
Users []string `json:"users" xml:"users>element"`
|
|
}
|
|
|
|
// User holds the payload for a GetUser response
|
|
type User struct {
|
|
Enabled string `json:"enabled" xml:"enabled"`
|
|
UserID string `json:"id" xml:"id"`// UserID is mapped to the preferred_name attribute in accounts
|
|
DisplayName string `json:"display-name" xml:"display-name"`
|
|
LegacyDisplayName string `json:"displayname" xml:"displayname"`
|
|
Email string `json:"email" xml:"email"`
|
|
Quota *Quota `json:"quota" xml:"quota"`
|
|
UIDNumber int64 `json:"uidnumber" xml:"uidnumber"`
|
|
GIDNumber int64 `json:"gidnumber" xml:"gidnumber"`
|
|
}
|
|
|
|
// Quota holds quota information
|
|
type Quota struct {
|
|
Free int64 `json:"free" xml:"free"`
|
|
Used int64 `json:"used" xml:"used"`
|
|
Total int64 `json:"total" xml:"total"`
|
|
Relative float32 `json:"relative" xml:"relative"`
|
|
Definition string `json:"definition" xml:"definition"`
|
|
}
|
|
|
|
// SigningKey holds the Payload for a GetSigningKey response
|
|
type SigningKey struct {
|
|
User string `json:"user" xml:"user"`
|
|
SigningKey string `json:"signing-key" xml:"signing-key"`
|
|
}
|