File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -367,22 +367,25 @@ class AtlanTags(AtlanObject):
367367
368368
369369class 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
388391T = TypeVar ("T" )
You can’t perform that action at this time.
0 commit comments