타입 별칭 SeparatedAddress

SeparatedAddress: {
    type: "SEPARATED";
    oneLine: string;
    addressLine1: string;
    addressLine2: string;
    city?: string;
    province?: string;
    country?: Country;
}

분리 형식 주소

한 줄 형식 주소와 분리 형식 주소 모두 존재합니다. 한 줄 형식 주소는 분리 형식 주소를 이어 붙인 형태로 생성됩니다.

타입 선언

  • type: "SEPARATED"
  • oneLine: string

    주소 (한 줄)

  • addressLine1: string

    상세 주소 1

  • addressLine2: string

    상세 주소 2

  • Optionalcity?: string

    시/군/구

  • Optionalprovince?: string

    주/도/시

  • Optionalcountry?: Country

    국가