使用者
interface User {
id: string;
application_id: string;
status: "active" | "suspended" | "disabled" | "deleted";
}
可在應用內驗證並透過 membership 存取帳戶的使用者。
interface User {
id: string;
application_id: string;
status: "active" | "suspended" | "disabled" | "deleted";
}