[docs]classThoughtspotView(Thoughtspot):"""Description"""type_name:str=Field(default="ThoughtspotView",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="ThoughtspotView":raiseValueError("must be ThoughtspotView")returnvdef__setattr__(self,name,value):ifnameinThoughtspotView._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:ThoughtspotView.Attributes=Field(default_factory=lambda:ThoughtspotView.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."),)