10 lines
280 B
Go
10 lines
280 B
Go
|
package api2d
|
||
|
|
||
|
type APGC2DGPTUsageResponse struct {
|
||
|
//Grants interface{} `json:"grants"`
|
||
|
Object string `json:"object"`
|
||
|
TotalAvailable float64 `json:"total_available"`
|
||
|
TotalGranted float64 `json:"total_granted"`
|
||
|
TotalUsed float64 `json:"total_used"`
|
||
|
}
|