All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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)
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy