How to remove Covers and Chocks programmatically?

Great, ty!

Do you have reference for that, as I can’t find them anywhere in the docs?
https://docs.flightsimulator.com/msfs2024/html/3_Models_And_Textures/Modeling/Aircraft/Airframe/Covers_Chocks_Pins.htm
https://docs.flightsimulator.com/msfs2024/html/6_Programming_APIs/SimVars/Simulation_Variables.htm

Do you have an example of the correct syntax to turn them on/off?

I tried the obvious one but it doesn’t work:
SimVar.SetSimVarValue(“A:COVER ON:0”, “bool”, 0);
SimVar.SetSimVarValue(“A:COVER ON:1”, “bool”, 0);
SimVar.SetSimVarValue(“A:COVER ON:2”, “bool”, 0);

Getting them returns 1 if you start C&D, but they don’t appear to be settable?

[Log] Before setting covers
[Log] Chocks: 1
[Log] Engine Cover: 1
[Log] Pitot Cover: 1
[Log] After setting covers
[Log] Chocks: 1
[Log] Engine Cover: 1
[Log] Pitot Cover: 1
[Log] Test Cover: 0