CustomProperty

@Serializable
data class CustomProperty(val key: String? = null, val value: String? = null) : Serializable

Represents a custom property with a key-value pair.

Constructors

Link copied to clipboard
constructor(key: String? = null, value: String? = null)

Properties

Link copied to clipboard
val key: String? = null

The key of the custom property.

Link copied to clipboard
val value: String? = null

The value of the custom property.