File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ class Constraints(BaseModel):
3030 reconciliation = None # type: bool
3131 """ (bool) True if vendor has marked parameters as for reconciliation purposes """
3232
33- min_lenght = None # type: int
33+ min_length = None # type: int
3434 """ (integer) Only for password type """
3535
36- max_lenght = None # type: int
36+ max_length = None # type: int
3737 """ (integer) Only for password type """
Original file line number Diff line number Diff line change @@ -48,8 +48,7 @@ class Param(BaseModel):
4848 value_choices = None # type: Optional[List[ValueChoice]]
4949 """ (List[str]|None) Available dropdown choices for parameter. """
5050
51- structured_value = None # type: Optional[str]
52- """ (List[str]|None) List of structured values for a value. """
51+ structured_value = None # type: Optional[dict]
5352
5453 phase = None # type: Optional[str]
5554 """ (str|None) Param phase. """
You can’t perform that action at this time.
0 commit comments