File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/main/java/com/datadog/api/client/v2/model Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -287,9 +287,10 @@ public CustomAttributeValuesUnion(Double o) {
287287 setActualInstance (o );
288288 }
289289
290- public CustomAttributeValuesUnion (List <Double > o ) {
291- super ("oneOf" , Boolean .FALSE );
292- setActualInstance (o );
290+ public static CustomAttributeValuesUnion fromListDouble (List <Double > o ) {
291+ CustomAttributeValuesUnion instance = new CustomAttributeValuesUnion ();
292+ instance .setActualInstance (o );
293+ return instance ;
293294 }
294295
295296 static {
@@ -391,7 +392,7 @@ public Double getDouble() throws ClassCastException {
391392 * @return The actual instance of `List<Double>`
392393 * @throws ClassCastException if the instance is not `List<Double>`
393394 */
394- public List <Double > getList () throws ClassCastException {
395+ public List <Double > getListDouble () throws ClassCastException {
395396 return (List <Double >) super .getActualInstance ();
396397 }
397398}
You can’t perform that action at this time.
0 commit comments