StdOutMessageEventData is the data associated with a StdOutMessageEvent * ``message``: the message that the target writes to the stdout
| 394 | |
| 395 | |
| 396 | class StdOutMessageEventData: |
| 397 | """ |
| 398 | StdOutMessageEventData is the data associated with a StdOutMessageEvent |
| 399 | |
| 400 | * ``message``: the message that the target writes to the stdout |
| 401 | |
| 402 | """ |
| 403 | def __init__(self, message: str): |
| 404 | self.message = message |
| 405 | |
| 406 | |
| 407 | class DebuggerEventData: |