Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Generated from 870609e2d01b2e64b589a0eb07e938f19282f4f0
Modify description, remove integer
  • Loading branch information
AutorestCI committed Jul 11, 2019
commit fcbb234ae9a7d831eabc8a7a7b8fe3f1383d6be2
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
*/
public class DateAfterCreation {
/**
* Integer value indicating the age in days after creation.
* Value indicating the age in days after creation.
*/
@JsonProperty(value = "daysAfterCreationGreaterThan", required = true)
private double daysAfterCreationGreaterThan;

/**
* Get integer value indicating the age in days after creation.
* Get value indicating the age in days after creation.
*
* @return the daysAfterCreationGreaterThan value
*/
Expand All @@ -30,7 +30,7 @@ public double daysAfterCreationGreaterThan() {
}

/**
* Set integer value indicating the age in days after creation.
* Set value indicating the age in days after creation.
*
* @param daysAfterCreationGreaterThan the daysAfterCreationGreaterThan value to set
* @return the DateAfterCreation object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
*/
public class DateAfterModification {
/**
* Integer value indicating the age in days after last modification.
* Value indicating the age in days after last modification.
*/
@JsonProperty(value = "daysAfterModificationGreaterThan", required = true)
private double daysAfterModificationGreaterThan;

/**
* Get integer value indicating the age in days after last modification.
* Get value indicating the age in days after last modification.
*
* @return the daysAfterModificationGreaterThan value
*/
Expand All @@ -30,7 +30,7 @@ public double daysAfterModificationGreaterThan() {
}

/**
* Set integer value indicating the age in days after last modification.
* Set value indicating the age in days after last modification.
*
* @param daysAfterModificationGreaterThan the daysAfterModificationGreaterThan value to set
* @return the DateAfterModification object itself.
Expand Down