Use default values for non-required properties if a default is specified (#254)
* use default values for non-required properties if a default is specified * generate client * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
from typing import Dict, List, Literal, Optional, Union
|
||||
from typing import Dict, List, Literal, Union
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel
|
||||
from typing_extensions import Annotated
|
||||
@ -50,7 +50,7 @@ class modeling_cmd_batch_req(BaseModel):
|
||||
|
||||
requests: List[ModelingCmdReq]
|
||||
|
||||
responses: Optional[bool] = None
|
||||
responses: bool = False
|
||||
|
||||
type: Literal["modeling_cmd_batch_req"] = "modeling_cmd_batch_req"
|
||||
|
||||
|
Reference in New Issue
Block a user