FullBackupHeaders.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.security.keyvault.administration.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The FullBackupHeaders model. */
@Fluent
public final class FullBackupHeaders {
/*
* The Retry-After property.
*/
@JsonProperty(value = "Retry-After")
private Integer retryAfter;
/*
* The Azure-AsyncOperation property.
*/
@JsonProperty(value = "Azure-AsyncOperation")
private String azureAsyncOperation;
/**
* Get the retryAfter property: The Retry-After property.
*
* @return the retryAfter value.
*/
public Integer getRetryAfter() {
return this.retryAfter;
}
/**
* Set the retryAfter property: The Retry-After property.
*
* @param retryAfter the retryAfter value to set.
* @return the FullBackupHeaders object itself.
*/
public FullBackupHeaders setRetryAfter(Integer retryAfter) {
this.retryAfter = retryAfter;
return this;
}
/**
* Get the azureAsyncOperation property: The Azure-AsyncOperation property.
*
* @return the azureAsyncOperation value.
*/
public String getAzureAsyncOperation() {
return this.azureAsyncOperation;
}
/**
* Set the azureAsyncOperation property: The Azure-AsyncOperation property.
*
* @param azureAsyncOperation the azureAsyncOperation value to set.
* @return the FullBackupHeaders object itself.
*/
public FullBackupHeaders setAzureAsyncOperation(String azureAsyncOperation) {
this.azureAsyncOperation = azureAsyncOperation;
return this;
}
}