Skip to content

Commit 0bf6c17

Browse files
committed
ECWID-159524 Add additional types
1 parent f3398c7 commit 0bf6c17

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/enums/ScheduledTimePrecisionType.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ enum class ScheduledTimePrecisionType {
55
DATE,
66
DATE_AND_TIME_SLOT,
77
}
8+
9+
@Suppress("unused")
10+
enum class PickupPrecisionType {
11+
DATE_ONLY,
12+
DATE_AND_TIME;
13+
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ data class FetchedShippingOption(
2727
val pickupPreparationTimeHours: Int? = null,
2828
val pickupBusinessHours: String? = null,
2929
val scheduledPickup: Boolean? = null,
30+
val pickupPrecisionType: PickupPrecisionType? = null,
3031
val type: String? = null,
3132
val carrier: String? = null,
3233
val carrierMethods: List<CarrierMethod>? = null,

0 commit comments

Comments
 (0)