Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.storage;
import com.fasterxml.jackson.annotation.JsonProperty;
Object to define the number of days after creation.
/**
* Object to define the number of days after creation.
*/
public class DateAfterCreation {
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 value indicating the age in days after creation.
Returns: the daysAfterCreationGreaterThan value
/**
* Get value indicating the age in days after creation.
*
* @return the daysAfterCreationGreaterThan value
*/
public double daysAfterCreationGreaterThan() {
return this.daysAfterCreationGreaterThan;
}
Set value indicating the age in days after creation.
Params: - daysAfterCreationGreaterThan – the daysAfterCreationGreaterThan value to set
Returns: the DateAfterCreation object itself.
/**
* Set value indicating the age in days after creation.
*
* @param daysAfterCreationGreaterThan the daysAfterCreationGreaterThan value to set
* @return the DateAfterCreation object itself.
*/
public DateAfterCreation withDaysAfterCreationGreaterThan(double daysAfterCreationGreaterThan) {
this.daysAfterCreationGreaterThan = daysAfterCreationGreaterThan;
return this;
}
}