We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4163cb commit d0f247fCopy full SHA for d0f247f
src/test/java/com/datadog/api/Undo.java
@@ -23,6 +23,7 @@ public static class Parameter {
23
public String template;
24
}
25
26
+ public String tag;
27
public String type;
28
public String operationId;
29
public List<Parameter> parameters;
@@ -79,6 +80,7 @@ public static String toOperationName(String string) {
79
80
81
82
public String getAPIName() {
83
+ if (undo.tag != null) return Pattern.compile(" ").matcher(undo.tag).replaceAll("");
84
return Pattern.compile(" ").matcher(tag).replaceAll("");
85
86
0 commit comments