[docs]classRedash(BI):"""Description"""type_name:str=Field(default="Redash",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="Redash":raiseValueError("must be Redash")returnvdef__setattr__(self,name,value):ifnameinRedash._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)REDASH_IS_PUBLISHED:ClassVar[BooleanField]=BooleanField("redashIsPublished","redashIsPublished")""" Whether this asset is published in Redash (true) or not (false). """_convenience_properties:ClassVar[List[str]]=["redash_is_published",]@propertydefredash_is_published(self)->Optional[bool]:returnNoneifself.attributesisNoneelseself.attributes.redash_is_published@redash_is_published.setterdefredash_is_published(self,redash_is_published:Optional[bool]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.redash_is_published=redash_is_publishedclassAttributes(BI.Attributes):redash_is_published:Optional[bool]=Field(default=None,description="")attributes:Redash.Attributes=Field(default_factory=lambda:Redash.Attributes(),description=("Map of attributes in the instance and their values. ""The specific keys of this map will vary by type, ""so are described in the sub-types of this schema."),)