2024-08-26 11:10:39 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
2024-08-26 12:31:20 +02:00
|
|
|
)
|
2024-08-26 11:10:39 +02:00
|
|
|
|
2024-08-26 12:31:20 +02:00
|
|
|
type AccountResponse struct {
|
2024-08-26 11:10:39 +02:00
|
|
|
Ok bool `json:"ok"`
|
|
|
|
Result struct {
|
2024-08-26 12:31:20 +02:00
|
|
|
CustodialId json.Number `json:"custodialId"`
|
|
|
|
PublicKey string `json:"publicKey"`
|
|
|
|
TrackingId string `json:"trackingId"`
|
2024-08-26 11:10:39 +02:00
|
|
|
} `json:"result"`
|
|
|
|
}
|