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; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
The RankingsResponseTablesItem model.
/** * The RankingsResponseTablesItem model. */
public class RankingsResponseTablesItem {
The ranking property.
/** * The ranking property. */
@JsonProperty(value = "ranking") private String ranking;
The data property.
/** * The data property. */
@JsonProperty(value = "data") private List<RankingsResponseTablesItemDataItem> data;
Get the ranking value.
Returns:the ranking value
/** * Get the ranking value. * * @return the ranking value */
public String ranking() { return this.ranking; }
Set the ranking value.
Params:
  • ranking – the ranking value to set
Returns:the RankingsResponseTablesItem object itself.
/** * Set the ranking value. * * @param ranking the ranking value to set * @return the RankingsResponseTablesItem object itself. */
public RankingsResponseTablesItem withRanking(String ranking) { this.ranking = ranking; return this; }
Get the data value.
Returns:the data value
/** * Get the data value. * * @return the data value */
public List<RankingsResponseTablesItemDataItem> data() { return this.data; }
Set the data value.
Params:
  • data – the data value to set
Returns:the RankingsResponseTablesItem object itself.
/** * Set the data value. * * @param data the data value to set * @return the RankingsResponseTablesItem object itself. */
public RankingsResponseTablesItem withData(List<RankingsResponseTablesItemDataItem> data) { this.data = data; return this; } }