16 lines
442 B
TypeScript
16 lines
442 B
TypeScript
interface RequestObject {
|
|
currentZipCode: string | null;
|
|
currentSubDistrictId: string | null;
|
|
currentDistrictId: string | null;
|
|
currentProvinceId: string | null;
|
|
currentAddress: string | null;
|
|
registrationZipCode: string | null;
|
|
registrationSubDistrictId: string | null;
|
|
registrationDistrictId: string | null;
|
|
registrationProvinceId: string | null;
|
|
registrationAddress: string | null;
|
|
}
|
|
|
|
export type {
|
|
RequestObject,
|
|
};
|