com.azure.resourcemanager.recoveryservicesbackup.fluent.models.UnlockDeleteResponseInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.fluent.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Response of Unlock Delete API.
*/
@Fluent
public final class UnlockDeleteResponseInner {
/*
* This is the time when unlock delete privileges will get expired.
*/
@JsonProperty(value = "unlockDeleteExpiryTime")
private String unlockDeleteExpiryTime;
/**
* Creates an instance of UnlockDeleteResponseInner class.
*/
public UnlockDeleteResponseInner() {
}
/**
* Get the unlockDeleteExpiryTime property: This is the time when unlock delete privileges will get expired.
*
* @return the unlockDeleteExpiryTime value.
*/
public String unlockDeleteExpiryTime() {
return this.unlockDeleteExpiryTime;
}
/**
* Set the unlockDeleteExpiryTime property: This is the time when unlock delete privileges will get expired.
*
* @param unlockDeleteExpiryTime the unlockDeleteExpiryTime value to set.
* @return the UnlockDeleteResponseInner object itself.
*/
public UnlockDeleteResponseInner withUnlockDeleteExpiryTime(String unlockDeleteExpiryTime) {
this.unlockDeleteExpiryTime = unlockDeleteExpiryTime;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy