com.ecwid.apiclient.v3.dto.common.Translations.kt Maven / Gradle / Ivy
package com.ecwid.apiclient.v3.dto.common
typealias LocaleName = String
class LocalizedValueMap() : HashMap() {
constructor(vararg pairs: Pair) : this() {
this.putAll(pairs)
}
@Suppress("unused")
constructor(other: LocalizedValueMap) : this() {
this.putAll(other)
}
@Suppress("unused")
constructor(other: Map) : this() {
this.putAll(other)
}
}