@openstream/client
Version:
Openstream Radio Server Client
15 lines • 429 B
TypeScript
import type { DateTime } from "../DateTime.js";
import type { Metadata } from "./Metadata.js";
export type Admin = {
_id: string;
first_name: string;
last_name: string;
email: string;
password: string;
language: string | null | undefined;
system_metadata: Metadata;
created_at: DateTime;
updated_at: DateTime;
deleted_at: DateTime | null | undefined;
};
//# sourceMappingURL=Admin.d.ts.map