| 34 | } |
| 35 | |
| 36 | export interface CodeSample { |
| 37 | key: string |
| 38 | response: { |
| 39 | contentType: string |
| 40 | description: string |
| 41 | example: Record<string, string> |
| 42 | statusCode: string |
| 43 | } |
| 44 | request: { |
| 45 | contentType: string |
| 46 | acceptHeader: string |
| 47 | bodyParameters: Record<string, string> |
| 48 | parameters: Record<string, string> |
| 49 | description: string |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | export interface BodyParameter { |
| 54 | in: string |
nothing calls this directly
no outgoing calls
no test coverage detected