[docs]classThoughtspotWorksheet(Thoughtspot):"""Description"""type_name:str=Field(default="ThoughtspotWorksheet",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="ThoughtspotWorksheet":raiseValueError("must be ThoughtspotWorksheet")returnvdef__setattr__(self,name,value):ifnameinThoughtspotWorksheet._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)THOUGHTSPOT_COLUMNS:ClassVar[RelationField]=RelationField("thoughtspotColumns")""" TBC """_convenience_properties:ClassVar[List[str]]=["thoughtspot_columns",]@propertydefthoughtspot_columns(self)->Optional[List[ThoughtspotColumn]]:returnNoneifself.attributesisNoneelseself.attributes.thoughtspot_columns@thoughtspot_columns.setterdefthoughtspot_columns(self,thoughtspot_columns:Optional[List[ThoughtspotColumn]]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.thoughtspot_columns=thoughtspot_columnsclassAttributes(Thoughtspot.Attributes):thoughtspot_columns:Optional[List[ThoughtspotColumn]]=Field(default=None,description="")# relationshipattributes:ThoughtspotWorksheet.Attributes=Field(default_factory=lambda:ThoughtspotWorksheet.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."),)