| 6 | } |
| 7 | |
| 8 | interface WebhookActionData { |
| 9 | verb: string |
| 10 | title: string |
| 11 | descriptionHtml: string |
| 12 | summaryHtml: string |
| 13 | previews: Array<string> |
| 14 | requestPath: string |
| 15 | serverUrl: string |
| 16 | statusCodes: Array<StatusCode> |
| 17 | parameters: Array<Parameter> |
| 18 | bodyParameters: Array<BodyParameter> |
| 19 | category: string |
| 20 | subcategory: string |
| 21 | codeExamples: Array<CodeSample> |
| 22 | availability: Array<string> |
| 23 | action: string |
| 24 | payloadExample?: Object |
| 25 | } |
| 26 | export interface WebhookAction { |
| 27 | name: string |
| 28 | actionTypes: string[] |
nothing calls this directly
no outgoing calls
no test coverage detected