data class Commerce : Parcelable
가격 정보를 표현하기 위해 사용되는 오브젝트.
Author
kevin.kang.
<init> |
가격 정보를 표현하기 위해 사용되는 오브젝트. Commerce(regularPrice: Int, discountPrice: Int? = null, fixedDiscountPrice: Int? = null, discountRate: Int? = null, productName: String? = null) |
discountPrice |
할인된 가격 val discountPrice: Int? |
discountRate |
할인율 val discountRate: Int? |
fixedDiscountPrice |
정액 할인 가격 val fixedDiscountPrice: Int? |
productName |
상품명 val productName: String? |
regularPrice |
정상가격 val regularPrice: Int |