hydroxide-push/protonmail/adresses.go

22 lines
350 B
Go
Raw Normal View History

2017-08-24 11:51:15 +03:00
package protonmail
type (
2017-09-13 12:43:12 +03:00
AddressSend int
2017-08-24 11:51:15 +03:00
AddressStatus int
2017-09-13 12:43:12 +03:00
AddressType int
2017-08-24 11:51:15 +03:00
)
type Address struct {
2017-09-13 12:43:12 +03:00
ID string
DomainID string
Email string
Send AddressSend
Receive int
Status AddressStatus
Type AddressType
2017-08-24 11:51:15 +03:00
DisplayName string
2017-09-13 12:43:12 +03:00
Signature string // HTML
HasKeys int
Keys []*Key
2017-08-24 11:51:15 +03:00
}