Skip to content

Commit

Permalink
Generated from a5bc337827b704dd39648b1946ce01fc3fc6a6ec (#2885)
Browse files Browse the repository at this point in the history
updated formating
  • Loading branch information
AutorestCI authored Jan 31, 2019
1 parent ded293a commit 9ce6834
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ public class CaptureDescription {
@JsonProperty(value = "destination")
private Destination destination;

/**
* A value that indicates whether to Skip Empty Archives.
*/
@JsonProperty(value = "skipEmptyArchives")
private Boolean skipEmptyArchives;

/**
* Get a value that indicates whether capture description is enabled.
*
Expand Down Expand Up @@ -150,4 +156,24 @@ public CaptureDescription withDestination(Destination destination) {
return this;
}

/**
* Get a value that indicates whether to Skip Empty Archives.
*
* @return the skipEmptyArchives value
*/
public Boolean skipEmptyArchives() {
return this.skipEmptyArchives;
}

/**
* Set a value that indicates whether to Skip Empty Archives.
*
* @param skipEmptyArchives the skipEmptyArchives value to set
* @return the CaptureDescription object itself.
*/
public CaptureDescription withSkipEmptyArchives(Boolean skipEmptyArchives) {
this.skipEmptyArchives = skipEmptyArchives;
return this;
}

}

0 comments on commit 9ce6834

Please sign in to comment.