We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8fe1a4 commit 5e30cd1Copy full SHA for 5e30cd1
src/main/kotlin/com/ecwid/apiclient/v3/dto/swatches/result/FetchedSwatchColor.kt
@@ -2,10 +2,12 @@ package com.ecwid.apiclient.v3.dto.swatches.result
2
3
import com.ecwid.apiclient.v3.dto.common.ApiFetchedDTO
4
import com.ecwid.apiclient.v3.dto.common.ApiResultDTO
5
+import com.ecwid.apiclient.v3.dto.common.LocalizedValueMap
6
7
data class FetchedSwatchColor(
8
val name: String = "",
9
val hexCode: String = "",
10
+ val translations: LocalizedValueMap? = null,
11
) : ApiFetchedDTO, ApiResultDTO {
12
override fun getModifyKind() = ApiFetchedDTO.ModifyKind.ReadOnly
13
}
0 commit comments