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 69fb7780..1d7d4641 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 @@ -243,7 +243,9 @@ data class FetchedStoreProfile( data class Shipping( val handlingFee: HandlingFee? = null, val shippingOrigin: ShippingOrigin? = null, - val shippingOptions: List? = null + val shippingOptions: List? = null, + val showOutlets: Boolean? = null, + val showProductsQuantity: Boolean? = null, ) data class HandlingFee( 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 808a2677..de77c963 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 @@ -304,6 +304,8 @@ val fetchedStoreProfileNullablePropertyRules: List> = IgnoreNullable(FetchedStoreProfile.Shipping::handlingFee), IgnoreNullable(FetchedStoreProfile.Shipping::shippingOptions), IgnoreNullable(FetchedStoreProfile.Shipping::shippingOrigin), + IgnoreNullable(FetchedStoreProfile.Shipping::showOutlets), + IgnoreNullable(FetchedStoreProfile.Shipping::showProductsQuantity), IgnoreNullable(FetchedStoreProfile.ShippingOrigin::city), IgnoreNullable(FetchedStoreProfile.ShippingOrigin::companyName), IgnoreNullable(FetchedStoreProfile.ShippingOrigin::countryCode),