How to list all set parameters?

Is there a way to list all the parameters set when a smartapp is installed from within the same smartapp?

I’ve tried everyway that I know how in groovy but none of them work.

log.debug "${settings}"

settings is a Map [ : ] with all the individual variables.

I think?

1 Like

If you use state. variables, I think you can do the same for them :

log.debug “${state}”

1 Like