@openstream/client
Version:
Openstream Radio Server Client
16 lines • 507 B
TypeScript
import type { AccountLimits } from "../AccountLimits.js";
import type { DateTime } from "../DateTime.js";
import type { Metadata } from "./Metadata.js";
export type Account = {
_id: string;
plan_id: string;
payment_method_id: string | null | undefined;
name: string;
limits: AccountLimits;
user_metadata: Metadata;
system_metadata: Metadata;
created_at: DateTime;
updated_at: DateTime;
deleted_at: DateTime | null | undefined;
};
//# sourceMappingURL=Account.d.ts.map