| 11 | } |
| 12 | |
| 13 | export interface BodyParameter { |
| 14 | in: string |
| 15 | name: string |
| 16 | description: string |
| 17 | type: string |
| 18 | isRequired?: boolean |
| 19 | default?: string |
| 20 | enum?: Array<string> |
| 21 | childParamsGroups?: Array<ChildParameter> |
| 22 | } |
| 23 | |
| 24 | export interface ChildParameter { |
| 25 | name: string |
nothing calls this directly
no outgoing calls
no test coverage detected