From ec1b87d951ab87e06fca9751d35d8cbb1f12492f Mon Sep 17 00:00:00 2001 From: Renat Ayzyatullen Date: Mon, 8 Apr 2024 14:48:11 +0400 Subject: [PATCH] ECWID-137817 New customers: add favorites to the internal API - changed 'favorites' field to val --- .../ecwid/apiclient/v3/dto/customer/result/FetchedCustomer.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/customer/result/FetchedCustomer.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/customer/result/FetchedCustomer.kt index cfb43310..bee396da 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/customer/result/FetchedCustomer.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/customer/result/FetchedCustomer.kt @@ -25,7 +25,7 @@ data class FetchedCustomer( val lang: String? = null, val stats: CustomerStats? = null, val privateAdminNotes: String? = null, - var favorites: List = ArrayList(), + val favorites: List = ArrayList(), @JsonFieldName("b2b_b2c") val commercialRelationshipScheme: CommercialRelationshipScheme = CommercialRelationshipScheme.b2c,