Files
go-proton-api/user_types.go
2023-09-27 11:49:06 +02:00

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
}