User
interface User {
id: string;
application_id: string;
status: "active" | "suspended" | "disabled" | "deleted";
}
ผู้ใช้ที่สามารถยืนยันตัวตนในแอปและเข้าถึงบัญชีได้
interface User {
id: string;
application_id: string;
status: "active" | "suspended" | "disabled" | "deleted";
}