List all predictions.
(key: IntegrationTaskKey)
| 88 | |
| 89 | /** List all predictions. */ |
| 90 | list(key: IntegrationTaskKey): ReplicateReturnType<Page<Prediction>> { |
| 91 | return this.runTask( |
| 92 | key, |
| 93 | (client) => { |
| 94 | return client.predictions.list(); |
| 95 | }, |
| 96 | { |
| 97 | name: "List Predictions", |
| 98 | } |
| 99 | ); |
| 100 | } |
| 101 | } |