타입 별칭 CustomerInput

CustomerInput: {
    id?: string;
    name?: CustomerNameInput;
    birthYear?: string;
    birthMonth?: string;
    birthDay?: string;
    country?: Country;
    gender?: Gender;
    email?: string;
    phoneNumber?: string;
    address?: SeparatedAddressInput;
    zipcode?: string;
    businessRegistrationNumber?: string;
}

고객 정보 입력 정보

타입 선언

  • Optionalid?: string

    고객 아이디

    고객사가 지정한 고객의 고유 식별자입니다.

  • Optionalname?: CustomerNameInput

    이름

  • OptionalbirthYear?: string

    출생 연도

  • OptionalbirthMonth?: string

    출생월

  • OptionalbirthDay?: string

    출생일

  • Optionalcountry?: Country

    국가

  • Optionalgender?: Gender

    성별

  • Optionalemail?: string

    이메일

  • OptionalphoneNumber?: string

    전화번호

  • Optionaladdress?: SeparatedAddressInput

    주소

  • Optionalzipcode?: string

    우편번호

  • OptionalbusinessRegistrationNumber?: string

    사업자 등록 번호