Skip to content

Commit 7eeed0e

Browse files
GOV-778: Add the showAsFeatured attributeDef to models
1 parent dbbddb0 commit 7eeed0e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pyatlan/model/typedef.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,10 @@ class Options(AtlanObject):
551551
default=False,
552552
description="Whether this attribute supports rich text formatting (True) or not (False). ",
553553
)
554+
show_as_featured: Optional[bool] = Field(
555+
default=None,
556+
description="Whether this attribute is shown as featured in the asset profile (True) or not (False).",
557+
)
554558

555559
def __setattr__(self, name, value):
556560
super().__setattr__(name, value)

0 commit comments

Comments
 (0)