13 lines
410 B
Go
13 lines
410 B
Go
package agentruntime
|
|
|
|
// AgentUsageStatus is the provider-neutral status/quota projection returned by
|
|
// a provider command handler. RawOutput is host-visible diagnostic text and is
|
|
// not part of durable quota snapshots.
|
|
type AgentUsageStatus struct {
|
|
RawOutput string
|
|
DailyLimit string
|
|
DailyResetTime string
|
|
WeeklyLimit string
|
|
WeeklyResetTime string
|
|
Metadata map[string]string
|
|
}
|