Remove Account from AccountCreateResponse

This commit is contained in:
Andrey Beletsky 2019-05-22 18:32:20 +07:00
parent 6c7f59bfb8
commit 438be5767a

View file

@ -213,12 +213,12 @@ type AccountListResponse struct {
type AccountBalanceResponse string
type AccountCreateResponse struct {
Account
PrivateKey string `json:"private_key,omitempty"`
PublicKey string `json:"public_key"`
Seed string `json:"seed"`
Ledger string `json:"ledger"`
ModifiedOn float64 `json:"modified_on"`
ID string `json:"id"`
Name string `json:"name"`
PublicKey string `json:"public_key"`
PrivateKey string `json:"private_key"`
Seed string `json:"seed"`
Ledger string `json:"ledger"`
}
type AccountRemoveResponse AccountCreateResponse