QualityManual¤
QualityManual
dataclass
¤
QualityManual(
accessories: Accessories = Accessories(),
documentation: str = "",
financial: Financial = Financial(),
personnel_restrictions: str = "",
service_agent: str = "",
technical_procedures: tuple[str, ...] = (),
)
Represents the qualityManual element in an equipment register.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
accessories
|
Accessories
|
Additional accessories that may be required to use the equipment. |
Accessories()
|
documentation
|
str
|
Information (such as URLs) about the manuals, datasheets, etc. for the equipment. |
''
|
financial
|
Financial
|
Financial information about the equipment. |
Financial()
|
personnel_restrictions
|
str
|
Information about the people (or team) who are qualified to use the equipment. |
''
|
service_agent
|
str
|
Information about the people or company that are qualified to perform alterations and/or maintenance to the equipment. |
''
|
technical_procedures
|
tuple[str, ...]
|
The technical procedure(s) that depend on this equipment. |
()
|
accessories
class-attribute
instance-attribute
¤
accessories: Accessories = field(
default_factory=Accessories
)
Additional accessories that may be required to use the equipment.
documentation
class-attribute
instance-attribute
¤
documentation: str = ''
Information (such as URLs) about the manuals, datasheets, etc. for the equipment.
financial
class-attribute
instance-attribute
¤
Financial information about the equipment.
personnel_restrictions
class-attribute
instance-attribute
¤
personnel_restrictions: str = ''
Information about the people (or team) who are qualified to use the equipment.
service_agent
class-attribute
instance-attribute
¤
service_agent: str = ''
Information about the people or company that are qualified to perform alterations and/or maintenance to the equipment.
technical_procedures
class-attribute
instance-attribute
¤
The technical procedure(s) that depend on this equipment.
from_xml
classmethod
¤
from_xml(element: Element[str]) -> QualityManual
Convert an XML element into an QualityManual instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
element
|
Element[str]
|
A qualityManual XML element from an equipment register. |
required |
Returns:
Type | Description |
---|---|
QualityManual
|
The QualityManual instance. |
to_xml ¤
Convert the QualityManual class into an XML element.
Returns:
Type | Description |
---|---|
Element[str]
|
The QualityManual as an XML element. |