From 55f4fa848510ba6be634a377f1998e02a9e39aa1 Mon Sep 17 00:00:00 2001 From: "openapi-bot[bot]" <37845953+openapi-bot[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2019 12:59:11 +0000 Subject: [PATCH] Generated from 1359136990ad317a5698dd0a64fe6f20890d4cd5 (#202) chore: jsonfmt billing --- .../ValidateTransferListResponse.java | 5 ----- .../ValidateTransferListResponseImpl.java | 5 ----- .../ValidateTransferListResponseInner.java | 15 --------------- 3 files changed, 25 deletions(-) diff --git a/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/ValidateTransferListResponse.java b/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/ValidateTransferListResponse.java index 8e370eaa0da9..731fa761a89f 100644 --- a/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/ValidateTransferListResponse.java +++ b/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/ValidateTransferListResponse.java @@ -18,11 +18,6 @@ * Type representing ValidateTransferListResponse. */ public interface ValidateTransferListResponse extends HasInner, HasManager { - /** - * @return the nextLink value. - */ - String nextLink(); - /** * @return the value value. */ diff --git a/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseImpl.java b/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseImpl.java index 8899db811aec..8e7e936954b6 100644 --- a/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseImpl.java +++ b/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseImpl.java @@ -25,11 +25,6 @@ public BillingManager manager() { return this.manager; } - @Override - public String nextLink() { - return this.inner().nextLink(); - } - @Override public List value() { return this.inner().value(); diff --git a/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseInner.java b/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseInner.java index bce96ee47daa..69db46979c09 100644 --- a/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseInner.java +++ b/billing/resource-manager/v2019_10_01_preview/src/main/java/com/microsoft/azure/management/billing/v2019_10_01_preview/implementation/ValidateTransferListResponseInner.java @@ -22,12 +22,6 @@ public class ValidateTransferListResponseInner { @JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY) private List value; - /** - * The link (url) to the next page of results. - */ - @JsonProperty(value = "nextLink", access = JsonProperty.Access.WRITE_ONLY) - private String nextLink; - /** * Get the list of transfer validation results. * @@ -37,13 +31,4 @@ public List value() { return this.value; } - /** - * Get the link (url) to the next page of results. - * - * @return the nextLink value - */ - public String nextLink() { - return this.nextLink; - } - }