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

17 lines
336 B
Go

package proton
type CreateAddressKeyReq struct {
AddressID string
PrivateKey string
Primary Bool
SignedKeyList KeyList
// The following are only used in "migrated accounts"
Token string `json:",omitempty"`
Signature string `json:",omitempty"`
}
type MakeAddressKeyPrimaryReq struct {
SignedKeyList KeyList
}