Files
go-proton-api/address_types.go
2022-11-23 12:03:04 +01:00

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
)