Skip to content

Commit dabe8d7

Browse files
committed
ECWID-105278 Added locationId field for local pickup shipping options
1 parent 4dfa7f8 commit dabe8d7

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ data class FetchedStoreProfile(
235235
val flatRate: FlatRate? = null,
236236
val ratesTable: TableRatesDetails? = null,
237237
val appClientId: String? = null,
238+
val locationId: String? = null,
238239
val pickupInstruction: String? = null,
239240
val scheduledPickup: Boolean? = null,
240241
val pickupPreparationTimeHours: Int? = null,

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
@@ -289,6 +289,7 @@ val fetchedStoreProfileNullablePropertyRules: List<NullablePropertyRule<*, *>> =
289289
IgnoreNullable(FetchedStoreProfile.ShippingOption::flatRate),
290290
IgnoreNullable(FetchedStoreProfile.ShippingOption::fulfilmentType),
291291
IgnoreNullable(FetchedStoreProfile.ShippingOption::id),
292+
AllowNullable(FetchedStoreProfile.ShippingOption::locationId),
292293
IgnoreNullable(FetchedStoreProfile.ShippingOption::orderBy),
293294
IgnoreNullable(FetchedStoreProfile.ShippingOption::pickupBusinessHours),
294295
IgnoreNullable(FetchedStoreProfile.ShippingOption::pickupInstruction),

0 commit comments

Comments
 (0)