VariationsMap

@JsonClass(generateAdapter = true)
data class VariationsMap(    @Json(name = "dtype") val dtype: String,     @Json(name = "values") val values: Map<String, Map<String, String>>,     @Json(name = "group_by") val groupBy: List<Map<String, String>>? = null,     @Json(name = "filter_by") var filterBy: String? = null) : Serializable

Models variations map object available for modifying the request

Constructors

Link copied to clipboard
fun VariationsMap(    @Json(name = "dtype") dtype: String,     @Json(name = "values") values: Map<String, Map<String, String>>,     @Json(name = "group_by") groupBy: List<Map<String, String>>? = null,     @Json(name = "filter_by") filterBy: String? = null)

Properties

Link copied to clipboard
val dtype: String
Link copied to clipboard
var filterBy: String? = null
Link copied to clipboard
val groupBy: List<Map<String, String>>? = null
Link copied to clipboard
val values: Map<String, Map<String, String>>