| 1 | export interface Operation { |
| 2 | verb: string |
| 3 | title: string |
| 4 | descriptionHTML: string |
| 5 | previews: Array<string> |
| 6 | requestPath: string |
| 7 | serverUrl: string |
| 8 | statusCodes: Array<StatusCode> |
| 9 | parameters: Array<Parameter> |
| 10 | bodyParameters: Array<BodyParameter> |
| 11 | category: string |
| 12 | subcategory: string |
| 13 | enabledForGitHubApps: boolean |
| 14 | codeExamples: Array<CodeSample> |
| 15 | } |
| 16 | |
| 17 | export interface Parameter { |
| 18 | exampleName?: string |
nothing calls this directly
no outgoing calls
no test coverage detected