Input to the DoorLock setUserType command

MatterSpecification.v13.Cluster § 5.2.10.26

interface SetUserTypeRequest {
    userId: number;
    userType: DoorLock.UserType;
}

Hierarchy (view full)

Properties

Properties

userId: number

This field shall indicate the user ID.

MatterSpecification.v13.Cluster § 5.2.10.26.1

userType: DoorLock.UserType

This field shall indicate the user type.

If UserType is currently YearDayScheduleUser, WeekDayScheduleUser, or ScheduleRestrictedUser and the new UserType is UnrestrictedUser then all existing Year Day and/or Week Day schedules shall be ignored or disabled (if this transition is supported by the door lock). If UserType is ScheduleRestrictedUser and the new UserType is ScheduleRestrictedUser then all existing Year Day and/or Week Day schedules shall be applied or enabled.

MatterSpecification.v13.Cluster § 5.2.10.26.2