2024-03-14 15:06:25 +07:00
|
|
|
interface ResponseObject {
|
2024-03-19 15:15:02 +07:00
|
|
|
createdAt: Date;
|
|
|
|
|
createdFullName: string;
|
|
|
|
|
createdUserId: string;
|
|
|
|
|
detail: string;
|
2024-03-14 15:06:25 +07:00
|
|
|
id: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
isActive: boolean;
|
|
|
|
|
isDate: boolean;
|
|
|
|
|
issueDate: Date;
|
2024-03-14 15:06:25 +07:00
|
|
|
issuer: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
lastUpdateUserId: string;
|
|
|
|
|
lastUpdatedAt: Date;
|
|
|
|
|
profileId: string;
|
|
|
|
|
refCommandDate: Date;
|
2024-03-14 15:06:25 +07:00
|
|
|
refCommandNo: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { ResponseObject };
|