diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt index 9d02e1b0..9f591174 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt @@ -601,6 +601,9 @@ data class FetchedStoreProfile( @JsonFieldName("product_details_position_product_price") val productDetailsPositionProductPrice: Int? = null, + @JsonFieldName("product_details_position_product_loyalty") + val productDetailsPositionProductLoyalty: Int? = null, + @JsonFieldName("product_details_position_product_sku") val productDetailsPositionProductSku: Int? = null, @@ -667,6 +670,9 @@ data class FetchedStoreProfile( @JsonFieldName("product_details_show_product_price") val productDetailsShowProductPrice: Boolean? = null, + @JsonFieldName("product_details_show_product_loyalty") + val productDetailsShowProductLoyalty: Boolean? = null, + @JsonFieldName("product_details_show_product_sku") val productDetailsShowProductSku: Boolean? = null, diff --git a/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt b/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt index c82f1727..3f928702 100644 --- a/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt +++ b/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt @@ -91,6 +91,7 @@ val fetchedStoreProfileNullablePropertyRules: List> = AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionProductName), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionProductOptions), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionProductPrice), + AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionProductLoyalty), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionProductSku), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionSaveForLater), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsPositionShareButtons), @@ -113,6 +114,7 @@ val fetchedStoreProfileNullablePropertyRules: List> = AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowProductOptions), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowProductPhotoZoom), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowProductPrice), + AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowProductLoyalty), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowProductSku), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowQty), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowSalePrice),