Setting a value on a clickable op parameter in python

Hi, I’m wondering how to set a value for clickable parameters of operators in python.

For example:

opparm web1 fetch 1

Works

But

op('web1').par.fetch = 1

Rises a textport error

:question:

you can use

op(‘web1’).par.fetch.click(1)

thanks