ShippingAddress
public struct ShippingAddress : Codable
배송지 정보 클래스 입니다.
Seealso
UserShippingAddresses
-
배송지 타입 열거형
See moreDeclaration
Swift
public enum ShippingAddress.`Type` : String, Codable
-
배송지 아이디
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
TypeDeclaration
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?