@openstream/client
Version:
Openstream Radio Server Client
17 lines • 453 B
TypeScript
import type { DateTime } from "../DateTime.js";
import type { PlanLimits } from "./PlanLimits.js";
export type Plan = {
_id: string;
identifier: string;
slug: string;
display_name: string;
price: number;
limits: PlanLimits;
color: string;
order: number;
is_user_selectable: boolean;
created_at: DateTime;
updated_at: DateTime;
deleted_at: DateTime | null | undefined;
};
//# sourceMappingURL=Plan.d.ts.map