Files
psp_panel/src/app/domains/partner/modules/accounts/models/io.d.ts
T

24 lines
421 B
TypeScript
Raw Normal View History

2026-04-13 15:47:50 +03:30
export interface IAccountRawResponse {
id: string;
role: string;
created_at: string;
account: Account;
}
export interface IAccountResponse extends IAccountRawResponse {}
export interface IAccountRequest {
username?: string;
password?: string;
role?: string;
status?: string;
2026-04-13 15:47:50 +03:30
}
export interface IAccountPasswordRequest {
password: string;
}
interface Account {
username: string;
status: string;
}