* 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>
18 lines
255 B
Python
18 lines
255 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class LeafNode(BaseModel):
|
|
"""Leaf node information."""
|
|
|
|
auth_timeout: int = 0
|
|
|
|
host: str = ""
|
|
|
|
port: int = 0
|
|
|
|
tls_timeout: int = 0
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|