ProfileCondition

@Serializable
data class ProfileCondition(val condition: ProfileConditionType, val property: ProfileConditionValue, val value: String? = null, val isRequired: Boolean)

Constructors

Link copied to clipboard
constructor(condition: ProfileConditionType, property: ProfileConditionValue, value: String? = null, isRequired: Boolean)

Properties

Link copied to clipboard
@SerialName(value = "Condition")
val condition: ProfileConditionType
Link copied to clipboard
@SerialName(value = "IsRequired")
val isRequired: Boolean
Link copied to clipboard
@SerialName(value = "Property")
val property: ProfileConditionValue
Link copied to clipboard
@SerialName(value = "Value")
val value: String?