15 lines
455 B
TypeScript
15 lines
455 B
TypeScript
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 };
|