We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7624b95 commit 6b36116Copy full SHA for 6b36116
src/client/interfaces/Operation.d.ts
@@ -6,6 +6,7 @@ import type { OperationCodegen } from './OperationCodegen';
6
export interface Operation extends OperationParameters {
7
service: string;
8
name: string;
9
+ operationId: string | null;
10
summary: string | null;
11
description: string | null;
12
deprecated: boolean;
src/templates/exportService.hbs
@@ -25,6 +25,9 @@ export class {{{name}}}{{{@root.postfix}}} {
25
{{#if deprecated}}
26
* @deprecated
27
{{/if}}
28
+ {{#if operationId}}
29
+ * {{{escapeComment operationId}}}
30
+ {{/if}}
31
{{#if summary}}
32
* {{{escapeComment summary}}}
33
0 commit comments