2024-03-20 16:51:53 +07:00
|
|
|
interface RequestItemsObject {
|
2024-09-03 11:28:01 +07:00
|
|
|
certificateType: string;
|
|
|
|
|
issuer: string;
|
|
|
|
|
certificateNo: string;
|
2025-03-13 13:26:14 +07:00
|
|
|
issueDate: Date | null;
|
2024-09-03 11:28:01 +07:00
|
|
|
expireDate: Date | null;
|
|
|
|
|
profileId: string;
|
2024-03-13 15:43:52 +07:00
|
|
|
}
|
|
|
|
|
|
2024-03-20 16:51:53 +07:00
|
|
|
export type { RequestItemsObject };
|