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.cdn.implementation; import com.fasterxml.jackson.annotation.JsonProperty;
The validation token.
/** * The validation token. */
public class ValidationTokenInner {
The token property.
/** * The token property. */
@JsonProperty(value = "token", access = JsonProperty.Access.WRITE_ONLY) private String token;
Get the token value.
Returns:the token value
/** * Get the token value. * * @return the token value */
public String token() { return this.token; } }