Skip to content

Commit 8680645

Browse files
committed
APP-8836: Made Meanings fields optional
1 parent 3f7d250 commit 8680645

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

pyatlan/model/core.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,22 +367,25 @@ class AtlanTags(AtlanObject):
367367

368368

369369
class Meaning(AtlanObject):
370-
term_guid: str = Field(
370+
term_guid: Optional[str] = Field(
371+
default=None,
371372
description="Unique identifier (GUID) of the related term.",
372373
example="917ffec9-fa84-4c59-8e6c-c7b114d04be3",
373374
alias="termGuid",
374375
)
375-
relation_guid: str = Field(
376+
relation_guid: Optional[str] = Field(
377+
default=None,
376378
description="Unique identifier (GUID) of the relationship itself.",
377379
example="917ffec9-fa84-4c59-8e6c-c7b114d04be3",
378380
alias="relationGuid",
379381
)
380-
display_text: str = Field(
382+
display_text: Optional[str] = Field(
383+
default=None,
381384
description="Human-readable display name of the related term.",
382385
example="Company",
383386
alias="displayText",
384387
)
385-
confidence: int = Field(description="Unused", example=1)
388+
confidence: Optional[int] = Field(default=None, description="Unused", example=1)
386389

387390

388391
T = TypeVar("T")

0 commit comments

Comments
 (0)