InvalidNullParameterValue

class InvalidNullParameterValue : ValidationIssue


The parameter value must not be null.

Summary

Public constructors

InvalidNullParameterValue(
    node: Node,
    severity: ValidationIssueSeverity,
    id: Int?,
    name: String?,
    expected: String
)

Create an InvalidNullParameterValue instance.

Public properties

String

The expected parameter type.

Int?

The unique ID of the parameter.

String?

The name of the parameter.

Inherited properties

From com.google.home.automation.ValidationIssue
ValidationIssueType

The type of the validation issue.

Node

The node for which validation is failing.

ValidationIssueSeverity

The severity of the validation issue.

Public constructors

InvalidNullParameterValue

InvalidNullParameterValue(
    node: Node,
    severity: ValidationIssueSeverity,
    id: Int? = null,
    name: String? = null,
    expected: String
)

Create an InvalidNullParameterValue instance.

Public properties

expected

val expectedString

The expected parameter type.

id

val idInt?

The unique ID of the parameter.

name

val nameString?

The name of the parameter.