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