mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
18 lines
394 B
Kotlin
18 lines
394 B
Kotlin
// Generated code. Do not modify.
|
|
|
|
package com.yandex.div2
|
|
|
|
import org.json.JSONObject
|
|
|
|
class EntityWithStringArrayProperty(
|
|
@JvmField final val array: ExpressionList<String>, // at least 1 elements
|
|
) {
|
|
|
|
companion object {
|
|
const val TYPE = "entity_with_string_array_property"
|
|
|
|
private val ARRAY_VALIDATOR = ListValidator<String> { it: List<*> -> it.size >= 1 }
|
|
}
|
|
|
|
}
|