Skip to content

Commit 301bef0

Browse files
authored
Merge pull request #192 from Ecwid/breadcrumbs-separator
Added breadcrumbsSeparator option to FetchedStoreProfile.DesignSettings DTO
2 parents 42792e9 + ae0e2bc commit 301bef0

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,9 @@ data class FetchedStoreProfile(
411411
@JsonFieldName("breadcrumbs_home_url")
412412
val breadcrumbsHomeUrl: String? = null,
413413

414+
@JsonFieldName("breadcrumbs_separator")
415+
val breadcrumbsSeparator: String? = null,
416+
414417
@JsonFieldName("cart_widget_fixed")
415418
val cartWidgetFixed: Boolean? = null,
416419

src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ val fetchedStoreProfileNullablePropertyRules: List<NullablePropertyRule<*, *>> =
5656
IgnoreNullable(FetchedStoreProfile.DefaultPostageDimensions::width),
5757
AllowNullable(FetchedStoreProfile.DesignSettings::breadcrumbsHaveHomeItem),
5858
AllowNullable(FetchedStoreProfile.DesignSettings::breadcrumbsHomeUrl),
59+
AllowNullable(FetchedStoreProfile.DesignSettings::breadcrumbsSeparator),
5960
AllowNullable(FetchedStoreProfile.DesignSettings::cartWidgetFixed),
6061
AllowNullable(FetchedStoreProfile.DesignSettings::cartWidgetFixedPosition),
6162
AllowNullable(FetchedStoreProfile.DesignSettings::cartWidgetFixedShape),

0 commit comments

Comments
 (0)