Result of importing an existing PageIndex Cloud document.
| 28 | |
| 29 | @dataclass |
| 30 | class CloudImportResult: |
| 31 | """Result of importing an existing PageIndex Cloud document.""" |
| 32 | |
| 33 | doc_id: str |
| 34 | doc_name: str # collision-resistant wiki slug |
| 35 | name: str # cloud display name (original filename in the cloud) |
| 36 | description: str |
| 37 | |
| 38 | |
| 39 | @dataclass |
no outgoing calls
no test coverage detected