34 lines
1 KiB
TypeScript
34 lines
1 KiB
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
currentAddress: string | null;
|
|
currentDistrictId: string | null;
|
|
currentProvinceId: string | null;
|
|
currentSubDistrictId: string | null;
|
|
currentZipCode: string | null;
|
|
registrationAddress: string | null;
|
|
registrationDistrictId: string | null;
|
|
registrationProvinceId: string | null;
|
|
registrationSame: Boolean | null;
|
|
registrationSubDistrictId: string | null;
|
|
registrationZipCode: string | null;
|
|
createdFullName: string | null;
|
|
createdAt: Date;
|
|
}
|
|
|
|
interface ResponseHistory {
|
|
currentAddress: string | null;
|
|
currentDistrictId: string | null;
|
|
currentProvinceId: string | null;
|
|
currentSubDistrictId: string | null;
|
|
currentZipCode: string | null;
|
|
registrationAddress: string | null;
|
|
registrationDistrictId: string | null;
|
|
registrationProvinceId: string | null;
|
|
registrationSame: string | null;
|
|
registrationSubDistrictId: string | null;
|
|
registrationZipCode: string | null;
|
|
createdFullName: string | null;
|
|
createdAt: Date;
|
|
}
|
|
|
|
export type { ResponseObject, ResponseHistory };
|