(
self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
)
| 24 | |
| 25 | class Dialog(ChannelOwner): |
| 26 | def __init__( |
| 27 | self, parent: ChannelOwner, type: str, guid: str, initializer: Dict |
| 28 | ) -> None: |
| 29 | super().__init__(parent, type, guid, initializer) |
| 30 | self._page: Optional["Page"] = from_nullable_channel(initializer.get("page")) |
| 31 | |
| 32 | def __repr__(self) -> str: |
| 33 | return f"<Dialog type={self.type} message={self.message} default_value={self.default_value}>" |
nothing calls this directly
no test coverage detected