` ` element. Specifies the default content type to be applied to a part with the specified extension.
| 62 | |
| 63 | |
| 64 | class CT_Default(BaseOxmlElement): |
| 65 | """`<Default>` element. |
| 66 | |
| 67 | Specifies the default content type to be applied to a part with the specified extension. |
| 68 | """ |
| 69 | |
| 70 | extension: str = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 71 | "Extension", ST_Extension |
| 72 | ) |
| 73 | contentType: str = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 74 | "ContentType", ST_ContentType |
| 75 | ) |
| 76 | |
| 77 | |
| 78 | class CT_Override(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…