Skip to content

Commit d728a93

Browse files
committed
Revert "ECWID-133812 Changed Date to Instant"
This reverts commit 00b7a0c.
1 parent 00b7a0c commit d728a93

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/productreview/result/FetchedProductReview.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.ecwid.apiclient.v3.dto.productreview.result
33
import com.ecwid.apiclient.v3.dto.common.ApiFetchedDTO
44
import com.ecwid.apiclient.v3.dto.common.ApiResultDTO
55
import com.ecwid.apiclient.v3.dto.productreview.enums.ProductReviewStatus
6-
import java.time.Instant
6+
import java.util.*
77

88
data 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 {

0 commit comments

Comments
 (0)