` ` element. Specifies the content type to be applied for a part with the specified partname.
| 76 | |
| 77 | |
| 78 | class CT_Override(BaseOxmlElement): |
| 79 | """`<Override>` element. |
| 80 | |
| 81 | Specifies the content type to be applied for a part with the specified partname. |
| 82 | """ |
| 83 | |
| 84 | partName: str = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 85 | "PartName", XsdAnyUri |
| 86 | ) |
| 87 | contentType: str = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 88 | "ContentType", ST_ContentType |
| 89 | ) |
| 90 | |
| 91 | |
| 92 | class CT_Relationship(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…