TlvLoginRequest: ObjectSchema<{
    node: OptionalFieldType<NodeId>;
    setupPin: FieldType<string>;
    tempAccountIdentifier: FieldType<string>;
}> = ...

Input to the AccountLogin login command

Type declaration

  • node: OptionalFieldType<NodeId>

    This optional field shall provide the Node ID of the Client. This field can be used by the Content App to keep track of Nodes which currently have access to it.

    MatterSpecification.v13.Cluster § 6.2.4.3.3

  • setupPin: FieldType<string>

    This field shall provide the setup PIN code as a text string at least 8 characters in length.

    NOTE

    Newer cluster clients should be aware that AccountLogin cluster version 1 specified an 11 digit minimum length.

    MatterSpecification.v13.Cluster § 6.2.4.3.2

  • tempAccountIdentifier: FieldType<string>

    This field shall specify the client’s temporary account identifier.

    MatterSpecification.v13.Cluster § 6.2.4.3.1

MatterSpecification.v13.Cluster § 6.2.4.3