2024-03-19 15:15:02 +07:00
|
|
|
interface RequestItemsObject {
|
2024-03-20 14:10:53 +07:00
|
|
|
profileId?: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
detail: string;
|
|
|
|
|
issueDate: Date | null;
|
|
|
|
|
issuer: string;
|
|
|
|
|
refCommandDate: Date | null;
|
|
|
|
|
refCommandNo: string;
|
2024-03-22 19:26:32 +07:00
|
|
|
isDate: boolean | string;
|
2024-03-14 15:06:25 +07:00
|
|
|
}
|
|
|
|
|
|
2024-03-22 19:26:32 +07:00
|
|
|
export type { RequestItemsObject };
|