ResetInterval - TypeScript SDK

ResetInterval type definition

The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Interval at which spend resets. Null means a lifetime (one-time) budget.

Example Usage

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

Values

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