UpdateKeysLimitReset - TypeScript SDK

UpdateKeysLimitReset type definition

New limit reset type for the API key (daily, weekly, monthly, or null for no reset). Resets happen automatically at midnight UTC, and weeks are Monday through Sunday.

Example Usage

1import { UpdateKeysLimitReset } from "@openrouter/sdk/models/operations";
2
3let value: UpdateKeysLimitReset = "daily";
4
5// Open enum: unrecognized values are captured as Unrecognized<string>

Values

1"daily" | "weekly" | "monthly" | Unrecognized<string>