ทะเบียนประวัติ: ใบอนุญาต API

This commit is contained in:
oat_dev 2024-03-20 16:51:53 +07:00
parent 80e0a459ea
commit 0e820e1315
4 changed files with 267 additions and 82 deletions

View file

@ -1,4 +1,4 @@
interface ProfesLicenseObject {
interface RequestItemsObject {
certificateType: string;
issuer: string;
certificateNo: string;
@ -6,4 +6,4 @@ interface ProfesLicenseObject {
expireDate: Date;
}
export type { ProfesLicenseObject };
export type { RequestItemsObject };

View file

@ -0,0 +1,12 @@
//ข้อมูล
interface ResponseObject {
issuer: string,
certificateType: string,
certificateNo: string,
issueDate: Date | null,
isActive: boolean,
expireDate: Date | null
}
export type { ResponseObject };