Skip to content

Commit 99f3d4a

Browse files
committed
Replace var fields modifiers with val
1 parent feea3fa commit 99f3d4a

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ data class FetchedStoreProfile(
450450
val cartWidgetIcon: String? = null,
451451

452452
@JsonFieldName("cart_widget_is_responsive")
453-
var cartWidgetIsResponsive: Boolean? = null,
453+
val cartWidgetIsResponsive: Boolean? = null,
454454

455455
@JsonFieldName("cart_widget_layout")
456456
val cartWidgetLayout: String? = null,
@@ -474,10 +474,10 @@ data class FetchedStoreProfile(
474474
val checkoutProductsCollapsedOnMobile: Boolean? = null,
475475

476476
@JsonFieldName("checkout_show_address_line_2")
477-
var checkoutShowAddressLine2: Boolean? = null,
477+
val checkoutShowAddressLine2: Boolean? = null,
478478

479479
@JsonFieldName("checkout_show_state_input")
480-
var checkoutShowStateInput: Boolean? = null,
480+
val checkoutShowStateInput: Boolean? = null,
481481

482482
@JsonFieldName("enable_catalog_on_one_page")
483483
val enableCatalogOnOnePage: Boolean? = null,
@@ -636,7 +636,7 @@ data class FetchedStoreProfile(
636636
val productDetailsShowWholesalePrices: Boolean? = null,
637637

638638
@JsonFieldName("product_details_show_zoomed_image_in_gallery")
639-
var productDetailsShowZoomedImageInGallery: Boolean? = null,
639+
val productDetailsShowZoomedImageInGallery: Boolean? = null,
640640

641641
@JsonFieldName("product_details_thumbnails_aspect_ratio")
642642
val productDetailsThumbnailsAspectRatio: String? = null,
@@ -663,7 +663,7 @@ data class FetchedStoreProfile(
663663
val productListCardLayout: String? = null,
664664

665665
@JsonFieldName("product_list_category_cell_spacing")
666-
var productListCategoryCellSpacing: Int? = null,
666+
val productListCategoryCellSpacing: Int? = null,
667667

668668
@JsonFieldName("product_list_category_image_aspect_ratio")
669669
val productListCategoryImageLayout: String? = null,
@@ -678,7 +678,7 @@ data class FetchedStoreProfile(
678678
val productListCategoryNameBehaviour: String? = null,
679679

680680
@JsonFieldName("product_list_cell_spacing")
681-
var productListCellSpacing: Int? = null,
681+
val productListCellSpacing: Int? = null,
682682

683683
@JsonFieldName("product_list_image_has_shadow")
684684
val productListImageHasShadow: Boolean? = null,
@@ -741,7 +741,7 @@ data class FetchedStoreProfile(
741741
val shoppingCartProductsCollapsedOnMobile: Boolean? = null,
742742

743743
@JsonFieldName("shopping_cart_show_sku")
744-
var shoppingCartShowSku: Boolean? = null,
744+
val shoppingCartShowSku: Boolean? = null,
745745

746746
@JsonFieldName("shopping_cart_show_qty_inputs")
747747
val shoppingCartShowQtyInputs: Boolean? = null,

0 commit comments

Comments
 (0)