Skip to content

Commit feea3fa

Browse files
committed
Add 7 missed fields to FetchedStoreProfile.DesignSettings class
1 parent 882eb5e commit feea3fa

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,9 @@ data class FetchedStoreProfile(
449449
@JsonFieldName("cart_widget_icon")
450450
val cartWidgetIcon: String? = null,
451451

452+
@JsonFieldName("cart_widget_is_responsive")
453+
var cartWidgetIsResponsive: Boolean? = null,
454+
452455
@JsonFieldName("cart_widget_layout")
453456
val cartWidgetLayout: String? = null,
454457

@@ -470,6 +473,12 @@ data class FetchedStoreProfile(
470473
@JsonFieldName("checkout_products_collapsed_on_mobile")
471474
val checkoutProductsCollapsedOnMobile: Boolean? = null,
472475

476+
@JsonFieldName("checkout_show_address_line_2")
477+
var checkoutShowAddressLine2: Boolean? = null,
478+
479+
@JsonFieldName("checkout_show_state_input")
480+
var checkoutShowStateInput: Boolean? = null,
481+
473482
@JsonFieldName("enable_catalog_on_one_page")
474483
val enableCatalogOnOnePage: Boolean? = null,
475484

@@ -626,6 +635,9 @@ data class FetchedStoreProfile(
626635
@JsonFieldName("product_details_show_wholesale_prices")
627636
val productDetailsShowWholesalePrices: Boolean? = null,
628637

638+
@JsonFieldName("product_details_show_zoomed_image_in_gallery")
639+
var productDetailsShowZoomedImageInGallery: Boolean? = null,
640+
629641
@JsonFieldName("product_details_thumbnails_aspect_ratio")
630642
val productDetailsThumbnailsAspectRatio: String? = null,
631643

@@ -650,6 +662,9 @@ data class FetchedStoreProfile(
650662
@JsonFieldName("product_list_product_info_layout")
651663
val productListCardLayout: String? = null,
652664

665+
@JsonFieldName("product_list_category_cell_spacing")
666+
var productListCategoryCellSpacing: Int? = null,
667+
653668
@JsonFieldName("product_list_category_image_aspect_ratio")
654669
val productListCategoryImageLayout: String? = null,
655670

@@ -662,6 +677,9 @@ data class FetchedStoreProfile(
662677
@JsonFieldName("product_list_category_title_behavior")
663678
val productListCategoryNameBehaviour: String? = null,
664679

680+
@JsonFieldName("product_list_cell_spacing")
681+
var productListCellSpacing: Int? = null,
682+
665683
@JsonFieldName("product_list_image_has_shadow")
666684
val productListImageHasShadow: Boolean? = null,
667685

@@ -722,6 +740,9 @@ data class FetchedStoreProfile(
722740
@JsonFieldName("shopping_cart_products_collapsed_on_mobile")
723741
val shoppingCartProductsCollapsedOnMobile: Boolean? = null,
724742

743+
@JsonFieldName("shopping_cart_show_sku")
744+
var shoppingCartShowSku: Boolean? = null,
745+
725746
@JsonFieldName("shopping_cart_show_qty_inputs")
726747
val shoppingCartShowQtyInputs: Boolean? = null,
727748

0 commit comments

Comments
 (0)