ACM Plugin integration - unable to assign a camera to a door in management client configuration

When creating the ACUnits of type door in building the initial configuration, is there an ACProperty that we should pass to the properties field to make the doors “camera enabled”? We are unable to assign a camera onto a door. Currently we are passing null for this parameter. Passing null for the properties parameter matches the implementation of the Demo Access Control plugin project.

Our TypeConverter method looks like this:

// Doors
 
    public static IEnumerable<ACUnit> ToACUnits(SGDoorBasicData door, string parentId)
 
    {
 
      var unsupportedCommands = new List<string>();
 
 
 
      yield return new ACUnit(door.DoorId.ToString(), door.DoorName, ACBuiltInIconKeys.Door, null, TypeId.Door, parentId, unsupportedCommands) { IsEnabled = true };
 
    }

All the checkboxes in the camera column are disabled as seen in the below screenshot and we cannot drag the camera over to assign.

Sorry for the delayed response. Cameras are associated with access points, not doors, so you will have to add at least one access point for each door. You can see in the TypeConverter.ToACUnits method in the DemoAccessControlPlugin sample how it is done.