ai-gateway/providers/aiproxy/type.go

11 lines
249 B
Go
Raw Normal View History

2023-12-02 09:51:28 +00:00
package aiproxy
type AIProxyUserOverviewResponse struct {
Success bool `json:"success"`
Message string `json:"message"`
ErrorCode int `json:"error_code"`
Data struct {
TotalPoints float64 `json:"totalPoints"`
} `json:"data"`
}