/** * 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.batch.implementation; import com.fasterxml.jackson.annotation.JsonProperty; /** * A set of Azure Batch account keys. */ public class BatchAccountKeysInner { /** * The primary key associated with the account. */ @JsonProperty(value = "primary") private String primary; /** * The secondary key associated with the account. */ @JsonProperty(value = "secondary") private String secondary; /** * Get the primary value. * * @return the primary value */ public String primary() { return this.primary; } /** * Set the primary value. * * @param primary the primary value to set * @return the BatchAccountKeysInner object itself. */ public BatchAccountKeysInner withPrimary(String primary) { this.primary = primary; return this; } /** * Get the secondary value. * * @return the secondary value */ public String secondary() { return this.secondary; } /** * Set the secondary value. * * @param secondary the secondary value to set * @return the BatchAccountKeysInner object itself. */ public BatchAccountKeysInner withSecondary(String secondary) { this.secondary = secondary; return this; } }