mirror of
https://github.com/ProtonMail/go-proton-api.git
synced 2025-12-23 23:57:50 -05:00
17 lines
336 B
Go
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
|
|
}
|