8 lines
184 B
Python
8 lines
184 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class SetGridAutoScale(BaseModel):
|
||
|
"""The response from the 'SetGridScale'."""
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|