blob: 19000372b4a2f8ac7ac6da611c3eb3f8098a8c00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package models
type CryptoResponse struct {
Query string `json:"query"`
Response string `json:"response"`
Credits struct {
Remaining int `json:"remaining"`
Unlimited bool `json:"unlimited"`
} `json:"credits"`
Message string `json:"message,omitempty"`
Error string `json:"error,omitempty"`
}
|