File tree Expand file tree Collapse file tree
src/main/kotlin/com/ecwid/apiclient/v3/dto/productreview/result Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package com.ecwid.apiclient.v3.dto.productreview.result
33import com.ecwid.apiclient.v3.dto.common.ApiFetchedDTO
44import com.ecwid.apiclient.v3.dto.common.ApiResultDTO
55import com.ecwid.apiclient.v3.dto.productreview.enums.ProductReviewStatus
6- import java.time.Instant
6+ import java.util.*
77
88data class FetchedProductReview (
99 val id : Long? = null ,
@@ -17,8 +17,8 @@ data class FetchedProductReview(
1717 val rating : Int? = null ,
1818 val review : String? = null ,
1919 val reviewerInfo : FetchedProductReviewerInfo ? = null ,
20- val createDate : Instant ? = null ,
21- val updateDate : Instant ? = null ,
20+ val createDate : Date ? = null ,
21+ val updateDate : Date ? = null ,
2222 val createTimestamp : Long? = null ,
2323 val updateTimestamp : Long? = null ,
2424) : ApiFetchedDTO, ApiResultDTO {
You can’t perform that action at this time.
0 commit comments