Programatically create Param Classes

Is here a way to create a Param Class programatically. I have a dictionary that would translate to Attribute name and type information and I would love to use this one to create a Param class. Could not find the relevant part in the code.

1 Like

Hi, you can check the param.parameterized_class(name,params) function.
Where name is the name of the class and params is a dictionary {param_name : param}.

4 Likes

Perfect, that is what I looked for :slight_smile:

1 Like