[docs]classCognosReport(Cognos):"""Description"""type_name:str=Field(default="CognosReport",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="CognosReport":raiseValueError("must be CognosReport")returnvdef__setattr__(self,name,value):ifnameinCognosReport._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)COGNOS_FOLDER:ClassVar[RelationField]=RelationField("cognosFolder")""" TBC """_convenience_properties:ClassVar[List[str]]=["cognos_folder",]@propertydefcognos_folder(self)->Optional[CognosFolder]:returnNoneifself.attributesisNoneelseself.attributes.cognos_folder@cognos_folder.setterdefcognos_folder(self,cognos_folder:Optional[CognosFolder]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.cognos_folder=cognos_folderclassAttributes(Cognos.Attributes):cognos_folder:Optional[CognosFolder]=Field(default=None,description="")# relationshipattributes:CognosReport.Attributes=Field(default_factory=lambda:CognosReport.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."),)