2024-03-20 16:51:53 +07:00
|
|
|
interface RequestItemsObject {
|
2024-03-13 15:43:52 +07:00
|
|
|
certificateType: string;
|
|
|
|
|
issuer: string;
|
|
|
|
|
certificateNo: string;
|
|
|
|
|
issueDate: Date;
|
2024-03-29 17:08:52 +07:00
|
|
|
expireDate: Date | null;
|
2024-03-21 14:57:39 +07:00
|
|
|
profileId: string;
|
2024-03-13 15:43:52 +07:00
|
|
|
}
|
|
|
|
|
|
2024-03-20 16:51:53 +07:00
|
|
|
export type { RequestItemsObject };
|