| 51 | } |
| 52 | |
| 53 | export interface BodyParameter { |
| 54 | in: string |
| 55 | name: string |
| 56 | description: string |
| 57 | type: string |
| 58 | isRequired?: boolean |
| 59 | default?: string |
| 60 | enum?: Array<string> |
| 61 | childParamsGroups?: Array<ChildParameter> |
| 62 | } |
| 63 | |
| 64 | export interface ChildParameter { |
| 65 | name: string |
nothing calls this directly
no outgoing calls
no test coverage detected