How to change render view settings for a headless installation without GUI

I am one step further, found possible solution described here https://discourse.paraview.org/t/python-access-to-servermanager-generalsettings-and-renderview-settings/1369
However, what I am still missing is, how to list attibute names of the proxy:

ProxyManager helper

pxm = servermanager.ProxyManager()

Custom rendering settings

renderingSettings = pxm.GetProxy(‘settings’, ‘RenderViewSettings’)

for prop in renderingSettings:
print(prop) # lists only the property values, but not names

following line raises an attribute error, as there is no 'ResolveCoincidentTopology ’ attribute.

renderingSettings.ResolveCoincidentTopology = ‘Shift z-buffer when rendering lines and points’

But how do I find the correct attribute names corresponding to the GUI settings?

Best,
Jan