com.ecwid.apiclient.v3.dto.common.OrderedStringToListStringMap.kt Maven / Gradle / Ivy
package com.ecwid.apiclient.v3.dto.common
import java.util.*
class OrderedStringToListStringMap : TreeMap> {
@Suppress("unused")
constructor() : super()
constructor(map: Map>?) {
if (map != null) {
putAll(map.map { e -> e.key to ArrayList(e.value) })
}
}
}