ussd/internal/models/trackstatusresponse.go
2024-10-31 02:03:29 +00:00

15 lines
312 B
Go

package models
import (
"encoding/json"
"time"
)
type TrackStatusResult struct {
CreatedAt time.Time `json:"createdAt"`
Status string `json:"status"`
TransferValue json.Number `json:"transferValue"`
TxHash string `json:"txHash"`
TxType string `json:"txType"`
}