PropertyBigInteger

@Serializable
@SerialName(value = "bigInteger")
data class PropertyBigInteger(val name: String, val value: BigInteger, val description: String? = null, val fixedValues: Set<BigInteger> = emptySet(), val readOnly: Boolean = false) : Property<BigInteger> (source)

Property implementation for com.ionspin.kotlin.bignum.integer.BigInteger values.

Constructors

Link copied to clipboard
constructor(name: String, value: BigInteger, description: String? = null, fixedValues: Set<BigInteger> = emptySet(), readOnly: Boolean = false)

Properties

Link copied to clipboard
open override val description: String?

Optional description

Link copied to clipboard
open override val fixedValues: Set<BigInteger>

Set of allowed com.ionspin.kotlin.bignum.integer.BigInteger values (empty if no restrictions)

Link copied to clipboard

Checks if this property has fixed values defined.

Link copied to clipboard
open override val name: String

Unique name of the property

Link copied to clipboard
open override val readOnly: Boolean

Whether the property is read-only

Link copied to clipboard
open override val value: BigInteger

Current big com.ionspin.kotlin.bignum.integer.BigInteger (stored as String)