![JAR search and dependency download from the Maven repository](/logo.png)
divkit.dsl.Extension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-json-builder Show documentation
Show all versions of kotlin-json-builder Show documentation
DivKit is an open source Server-Driven UI (SDUI) framework. SDUI is a an emerging technique that leverage the server to build the user interfaces of their mobile app.
@file:Suppress(
"unused",
"UNUSED_PARAMETER",
)
package divkit.dsl
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonValue
import divkit.dsl.annotation.*
import divkit.dsl.core.*
import divkit.dsl.scope.*
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* Extension that affects an element.
*
* Can be created using the method [extension].
*
* Required parameters: `id`.
*/
@Generated
class Extension internal constructor(
@JsonIgnore
val properties: Properties,
) {
@JsonAnyGetter
internal fun getJsonProperties(): Map = properties.mergeWith(emptyMap())
operator fun plus(additive: Properties): Extension = Extension(
Properties(
id = additive.id ?: properties.id,
params = additive.params ?: properties.params,
)
)
class Properties internal constructor(
/**
* Extension ID.
*/
val id: Property?,
/**
* Additional extension parameters.
*/
val params: Property
© 2015 - 2025 Weber Informatics LLC | Privacy Policy