ussd/internal/models/accountresponse.go

11 lines
274 B
Go
Raw Normal View History

package models
2024-08-26 12:31:20 +02:00
type AccountResponse struct {
2024-10-18 16:04:43 +02:00
Ok bool `json:"ok"`
Description string `json:"description"` // Include the description field
Result struct {
PublicKey string `json:"publicKey"`
TrackingId string `json:"trackingId"`
} `json:"result"`
2024-10-18 16:04:43 +02:00
}