File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
src/main/kotlin/com/ecwid/apiclient/v3/dto/profile Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ data class UpdatedShippingOption(
3131 val carrier : String? = null ,
3232 val carrierMethods : List <CarrierMethod >? = null ,
3333 val carrierSettings : CarrierSettings ? = null ,
34- val businessHours : BusinessHours ? = null ,
34+ val businessHours : String ? = null ,
3535 val businessHoursLimitationType : ApiBusinessHoursLimitationType ? = null ,
3636 val allowSameDayDelivery : Boolean? = null ,
3737 val deliveryTimeDays : String? = null ,
@@ -121,5 +121,3 @@ data class UpdatedShippingOption(
121121 return ApiUpdatedDTO .ModifyKind .ReadWrite (FetchedShippingOption ::class )
122122 }
123123}
124-
125- typealias BusinessHours = Map <String , List <List <String >>>
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ data class FetchedShippingOption(
3131 val carrier : String? = null ,
3232 val carrierMethods : List <CarrierMethod >? = null ,
3333 val carrierSettings : CarrierSettings ? = null ,
34- val businessHours : BusinessHours ? = null ,
34+ val businessHours : String ? = null ,
3535 val businessHoursLimitationType : ApiBusinessHoursLimitationType ? = null ,
3636 val allowSameDayDelivery : Boolean? = null ,
3737 val deliveryTimeDays : String? = null ,
@@ -122,5 +122,3 @@ data class FetchedShippingOption(
122122 return ApiFetchedDTO .ModifyKind .ReadWrite (UpdatedShippingOption ::class )
123123 }
124124}
125-
126- typealias BusinessHours = Map <String , List <List <String >>>
You can’t perform that action at this time.
0 commit comments