We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9158ab8 commit 6531c1aCopy full SHA for 6531c1a
src/tailscale/models.py
@@ -23,7 +23,9 @@ class ClientConnectivity(BaseModel):
23
24
endpoints: List[str] = Field(default_factory=list)
25
derp: str
26
- mapping_varies_by_dest_ip: bool = Field(..., alias="mappingVariesByDestIP")
+ mapping_varies_by_dest_ip: Optional[bool] = Field(
27
+ None, alias="mappingVariesByDestIP"
28
+ )
29
latency: Any
30
client_supports: ClientSupports = Field(..., alias="clientSupports")
31
0 commit comments