PropertiesResponse

data class PropertiesResponse(val key: String? = null, val value: String? = null)

Represents a response containing properties information.

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 property. Default is null.

Link copied to clipboard
val value: String? = null

The value of the property. Default is null.