ShippingAddress

public struct ShippingAddress : Codable

배송지 정보 클래스

  • 배송지 타입 열거형

    See more

    Declaration

    Swift

    public enum Type : String, Codable
  • id

    배송지 아이디

    Declaration

    Swift

    public let id: Int64
  • 배송지명

    Declaration

    Swift

    public let name: String
  • 기본 배송지 여부

    Declaration

    Swift

    public let isDefault: Bool
  • 마지막 배송지정보 수정시각

    Declaration

    Swift

    public let updatedAt: Date
  • 배송지 타입

    Seealso

    Type

    Declaration

    Swift

    public let type: Type
  • 우편번호 검색시 채워지는 기본 주소

    Declaration

    Swift

    public let baseAddress: String
  • 기본 주소에 추가하는 상세 주소

    Declaration

    Swift

    public let detailAddress: String
  • 수령인 이름

    Declaration

    Swift

    public let receiverName: String?
  • 수령인 연락처

    Declaration

    Swift

    public let receiverPhoneNumber1: String?
  • 수령인 추가 연락처

    Declaration

    Swift

    public let receiverPhoneNumber2: String?
  • 도로명 주소 우편번호. 배송지 타입이 NEW인 경우 반드시 존재함

    Declaration

    Swift

    public let zoneNumber: String?
  • 지번 주소 우편번호. 배송지 타입이 OLD여도 값이 없을 수 있음

    Declaration

    Swift

    public let zipCode: String?