export interface Parameter { name: string; value: any; in: 'path' | 'body' | 'query' | 'formData' | 'header'; type: string; required?: boolean; withoutKeyData?: boolean; }