2024-03-12 18:14:35 +07:00
|
|
|
interface ResponseObject {
|
2024-03-27 18:32:03 +07:00
|
|
|
id: string;
|
2024-03-12 18:14:35 +07:00
|
|
|
registrationAddress: string | null;
|
|
|
|
|
registrationProvinceId: string | null;
|
2024-03-27 18:32:03 +07:00
|
|
|
registrationDistrictId: string | null;
|
2024-03-12 18:14:35 +07:00
|
|
|
registrationSubDistrictId: string | null;
|
|
|
|
|
registrationZipCode: string | null;
|
|
|
|
|
currentAddress: string | null;
|
|
|
|
|
currentProvinceId: string | null;
|
2024-03-27 18:32:03 +07:00
|
|
|
currentDistrictId: string | null;
|
2024-03-12 18:14:35 +07:00
|
|
|
currentSubDistrictId: string | null;
|
|
|
|
|
currentZipCode: string | null;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-27 18:32:03 +07:00
|
|
|
export type { ResponseObject };
|