[docs]classTableauSite(Tableau):"""Description"""type_name:str=Field(default="TableauSite",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="TableauSite":raiseValueError("must be TableauSite")returnvdef__setattr__(self,name,value):ifnameinTableauSite._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)PROJECTS:ClassVar[RelationField]=RelationField("projects")""" TBC """_convenience_properties:ClassVar[List[str]]=["projects",]@propertydefprojects(self)->Optional[List[TableauProject]]:returnNoneifself.attributesisNoneelseself.attributes.projects@projects.setterdefprojects(self,projects:Optional[List[TableauProject]]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.projects=projectsclassAttributes(Tableau.Attributes):projects:Optional[List[TableauProject]]=Field(default=None,description="")# relationshipattributes:TableauSite.Attributes=Field(default_factory=lambda:TableauSite.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."),)