2024-08-26 11:10:39 +02:00
|
|
|
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"`
|
2024-08-26 11:10:39 +02:00
|
|
|
} `json:"result"`
|
2024-10-18 16:04:43 +02:00
|
|
|
}
|