/** * 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.batch.protocol.models; import com.fasterxml.jackson.annotation.JsonProperty; /** * Defines headers for DeleteFromTask operation. */ public class FileDeleteFromTaskHeaders { /** * The ClientRequestId provided by the client during the request, if * present and requested to be returned. */ @JsonProperty(value = "client-request-id") private String clientRequestId; /** * The value that uniquely identifies a request. */ @JsonProperty(value = "request-id") private String requestId; /** * Get the clientRequestId value. * * @return the clientRequestId value */ public String clientRequestId() { return this.clientRequestId; } /** * Set the clientRequestId value. * * @param clientRequestId the clientRequestId value to set * @return the FileDeleteFromTaskHeaders object itself. */ public FileDeleteFromTaskHeaders withClientRequestId(String clientRequestId) { this.clientRequestId = clientRequestId; return this; } /** * Get the requestId value. * * @return the requestId value */ public String requestId() { return this.requestId; } /** * Set the requestId value. * * @param requestId the requestId value to set * @return the FileDeleteFromTaskHeaders object itself. */ public FileDeleteFromTaskHeaders withRequestId(String requestId) { this.requestId = requestId; return this; } }