(self, content: str, mount_path: str)
| 651 | _fields = ['content', 'mount_path'] |
| 652 | |
| 653 | def __init__(self, content: str, mount_path: str) -> None: |
| 654 | self.content: str = content |
| 655 | self.mount_path: str = mount_path |
| 656 | self.validate() |
| 657 | |
| 658 | def to_json(self) -> Dict[str, Any]: |
| 659 | return { |