Skip to content

Commit

Permalink
Generated from 1359136990ad317a5698dd0a64fe6f20890d4cd5 (#202)
Browse files Browse the repository at this point in the history
chore: jsonfmt billing
  • Loading branch information
openapi-sdkautomation[bot] authored and SDK Automation committed Aug 23, 2019
1 parent da456d6 commit b485b03
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@
* Type representing ValidateTransferListResponse.
*/
public interface ValidateTransferListResponse extends HasInner<ValidateTransferListResponseInner>, HasManager<BillingManager> {
/**
* @return the nextLink value.
*/
String nextLink();

/**
* @return the value value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ public BillingManager manager() {
return this.manager;
}

@Override
public String nextLink() {
return this.inner().nextLink();
}

@Override
public List<ValidateTransferResponse> value() {
return this.inner().value();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ public class ValidateTransferListResponseInner {
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
private List<ValidateTransferResponse> 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.
*
Expand All @@ -37,13 +31,4 @@ public List<ValidateTransferResponse> value() {
return this.value;
}

/**
* Get the link (url) to the next page of results.
*
* @return the nextLink value
*/
public String nextLink() {
return this.nextLink;
}

}

0 comments on commit b485b03

Please sign in to comment.