We're using `BaseModel` subclasses to define a com...
# prefect-ui
j
We're using
BaseModel
subclasses to define a common set of parameters for our ETL jobs including nice descriptions. However, not all flows use all parameters. Is there any way to exclude some parameters from being considered on the fly? Something like defining an
exclude
list??
Just for anyone stumbling into this we ended up making a function that builds a BaseModel on the fly using the pydantic functional API.