mirror of
https://github.com/ProtonMail/go-proton-api.git
synced 2025-12-23 23:57:50 -05:00
33 lines
459 B
Go
33 lines
459 B
Go
package proton
|
|
|
|
type User struct {
|
|
ID string
|
|
Name string
|
|
DisplayName string
|
|
Email string
|
|
Keys Keys
|
|
|
|
UsedSpace uint64
|
|
MaxSpace uint64
|
|
MaxUpload uint64
|
|
|
|
Credit int
|
|
Currency string
|
|
|
|
ProductUsedSpace ProductUsedSpace
|
|
}
|
|
|
|
type DeleteUserReq struct {
|
|
Reason string
|
|
Feedback string
|
|
Email string
|
|
}
|
|
|
|
type ProductUsedSpace struct {
|
|
Calendar uint64
|
|
Contact uint64
|
|
Drive uint64
|
|
Mail uint64
|
|
Pass uint64
|
|
}
|