Remove Account from AccountCreateResponse
This commit is contained in:
parent
6c7f59bfb8
commit
438be5767a
1 changed files with 6 additions and 6 deletions
|
@ -213,12 +213,12 @@ type AccountListResponse struct {
|
||||||
type AccountBalanceResponse string
|
type AccountBalanceResponse string
|
||||||
|
|
||||||
type AccountCreateResponse struct {
|
type AccountCreateResponse struct {
|
||||||
Account
|
ID string `json:"id"`
|
||||||
PrivateKey string `json:"private_key,omitempty"`
|
Name string `json:"name"`
|
||||||
PublicKey string `json:"public_key"`
|
PublicKey string `json:"public_key"`
|
||||||
Seed string `json:"seed"`
|
PrivateKey string `json:"private_key"`
|
||||||
Ledger string `json:"ledger"`
|
Seed string `json:"seed"`
|
||||||
ModifiedOn float64 `json:"modified_on"`
|
Ledger string `json:"ledger"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type AccountRemoveResponse AccountCreateResponse
|
type AccountRemoveResponse AccountCreateResponse
|
||||||
|
|
Loading…
Reference in a new issue