interface ResponseObject { registrationAddress: string | null; registrationProvinceId: string | null; registrationDistrictId: string | null; registrationSubDistrictId: string | null; registrationZipCode: string | null; currentAddress: string | null; currentProvinceId: string | null; currentDistrictId: string | null; currentSubDistrictId: string | null; currentZipCode: string | null; id: string; } export type { ResponseObject };