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

21 lines
359 B
TypeScript
Raw Normal View History

2026-03-16 17:56:22 +03:30
export interface IAccountRawResponse {
id: string;
2026-04-11 14:46:52 +03:30
role: string;
created_at: string;
account: Account;
2026-03-16 17:56:22 +03:30
}
export interface IAccountResponse extends IAccountRawResponse {}
export interface IAccountRequest {
name: string;
}
export interface IAccountPasswordRequest {
password: string;
}
2026-04-11 14:46:52 +03:30
interface Account {
username: string;
status: string;
}