(key: IntegrationTaskKey, params: GetFormParams)
| 25 | } |
| 26 | |
| 27 | get(key: IntegrationTaskKey, params: GetFormParams): Promise<GetFormResponse> { |
| 28 | return this.runTask( |
| 29 | key, |
| 30 | async (client, task) => { |
| 31 | return client.forms.get(params); |
| 32 | }, |
| 33 | { |
| 34 | name: "Get Form", |
| 35 | params, |
| 36 | properties: [ |
| 37 | { |
| 38 | label: "Form ID", |
| 39 | text: params.uid, |
| 40 | }, |
| 41 | ], |
| 42 | } |
| 43 | ); |
| 44 | } |
| 45 | } |
no test coverage detected