Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ data class FetchedStoreProfile(
data class Shipping(
val handlingFee: HandlingFee? = null,
val shippingOrigin: ShippingOrigin? = null,
val shippingOptions: List<FetchedShippingOption>? = null
val shippingOptions: List<FetchedShippingOption>? = null,
val showOutlets: Boolean? = null,
val showProductsQuantity: Boolean? = null,
)

data class HandlingFee(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@ val fetchedStoreProfileNullablePropertyRules: List<NullablePropertyRule<*, *>> =
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),
Expand Down
Loading