new-api/dto/pricing.go

12 lines
406 B
Go
Raw Normal View History

2024-05-13 23:02:35 +08:00
package dto
import "one-api/constant"
2024-05-13 23:02:35 +08:00
type OpenAIModels struct {
Id string `json:"id"`
Object string `json:"object"`
Created int `json:"created"`
OwnedBy string `json:"owned_by"`
SupportedEndpointTypes []constant.EndpointType `json:"supported_endpoint_types"`
2024-05-13 23:02:35 +08:00
}