mirror of
https://github.com/ProtonMail/go-proton-api.git
synced 2025-12-23 23:57:50 -05:00
28 lines
350 B
Go
28 lines
350 B
Go
package proton
|
|
|
|
type Address struct {
|
|
ID string
|
|
Email string
|
|
|
|
Send Bool
|
|
Receive Bool
|
|
Status AddressStatus
|
|
|
|
Order int
|
|
DisplayName string
|
|
|
|
Keys Keys
|
|
}
|
|
|
|
type OrderAddressesReq struct {
|
|
AddressIDs []string
|
|
}
|
|
|
|
type AddressStatus int
|
|
|
|
const (
|
|
AddressStatusDisabled AddressStatus = iota
|
|
AddressStatusEnabled
|
|
AddressStatusDeleting
|
|
)
|