ussd/internal/models/accountresponse.go

15 lines
276 B
Go
Raw Permalink Normal View History

package models
import (
"encoding/json"
2024-08-26 12:31:20 +02:00
)
2024-08-26 12:31:20 +02:00
type AccountResponse struct {
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"`
} `json:"result"`
}