| 380 | |
| 381 | |
| 382 | class WshEventData(Object): |
| 383 | def __init__(self): |
| 384 | self.conId = UNSET_INTEGER |
| 385 | self.filter = "" |
| 386 | self.fillWatchlist = False |
| 387 | self.fillPortfolio = False |
| 388 | self.fillCompetitors = False |
| 389 | self.startDate = "" |
| 390 | self.endDate = "" |
| 391 | self.totalLimit = UNSET_INTEGER |
| 392 | |
| 393 | def __str__(self): |
| 394 | return ( |
| 395 | f"WshEventData. ConId: {intMaxString(self.conId)}, " |
| 396 | f"Filter: {self.filter}, " |
| 397 | f"Fill Watchlist: {self.fillWatchlist:d}, " |
| 398 | f"Fill Portfolio: {self.fillPortfolio:d}, " |
| 399 | f"Fill Competitors: {self.fillCompetitors:d}" |
| 400 | ) |
no outgoing calls
no test coverage detected