Add loggedIn property
This commit is contained in:
parent
652e9769fd
commit
26ab714a3f
@ -1,4 +1,10 @@
|
||||
{
|
||||
"description": "This is used to flag a thing that manages user a user account. It is similar to the gateway interface. For example, if there is a remote API that requires logging in but doesn't really offer any more functionality than that, this account shall be used. Such device classes usually will cause auto-devices implementing the actual features as child devices.",
|
||||
"extends": "connectable"
|
||||
"description": "This is used to flag a thing that manages user a user account. It is similar to the gateway interface. For example, if there is a remote API that requires logging in but doesn't really offer any more functionality than that, this account shall be used. It inherits \"connectable\" which is used to flag if the remote server is unreachable. In addition, the \"loggedIn\" state indicates if the login fails. A client may reconfigure the device then to login again. Such device classes usually will cause auto-devices implementing the actual features as child devices.",
|
||||
"extends": "connectable",
|
||||
"states": [
|
||||
{
|
||||
"name": "loggedIn",
|
||||
"type": "bool"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user