[docs]classSapErpTransactionCode(SAP):"""Description"""type_name:str=Field(default="SapErpTransactionCode",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="SapErpTransactionCode":raiseValueError("must be SapErpTransactionCode")returnvdef__setattr__(self,name,value):ifnameinSapErpTransactionCode._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)SAP_ERP_COMPONENT:ClassVar[RelationField]=RelationField("sapErpComponent")""" TBC """SAP_ERP_ABAP_PROGRAM:ClassVar[RelationField]=RelationField("sapErpAbapProgram")""" TBC """_convenience_properties:ClassVar[List[str]]=["sap_erp_component","sap_erp_abap_program",]@propertydefsap_erp_component(self)->Optional[SapErpComponent]:returnNoneifself.attributesisNoneelseself.attributes.sap_erp_component@sap_erp_component.setterdefsap_erp_component(self,sap_erp_component:Optional[SapErpComponent]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.sap_erp_component=sap_erp_component@propertydefsap_erp_abap_program(self)->Optional[SapErpAbapProgram]:returnNoneifself.attributesisNoneelseself.attributes.sap_erp_abap_program@sap_erp_abap_program.setterdefsap_erp_abap_program(self,sap_erp_abap_program:Optional[SapErpAbapProgram]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.sap_erp_abap_program=sap_erp_abap_programclassAttributes(SAP.Attributes):sap_erp_component:Optional[SapErpComponent]=Field(default=None,description="")# relationshipsap_erp_abap_program:Optional[SapErpAbapProgram]=Field(default=None,description="")# relationshipattributes:SapErpTransactionCode.Attributes=Field(default_factory=lambda:SapErpTransactionCode.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."),)