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 org.joda.time.DateTime;
import java.util.List;
import com.microsoft.azure.management.cdn.RankingsResponseTablesItem;
import com.fasterxml.jackson.annotation.JsonProperty;
Rankings Response.
/**
* Rankings Response.
*/
public class RankingsResponseInner {
The dateTimeBegin property.
/**
* The dateTimeBegin property.
*/
@JsonProperty(value = "dateTimeBegin")
private DateTime dateTimeBegin;
The dateTimeEnd property.
/**
* The dateTimeEnd property.
*/
@JsonProperty(value = "dateTimeEnd")
private DateTime dateTimeEnd;
The tables property.
/**
* The tables property.
*/
@JsonProperty(value = "tables")
private List<RankingsResponseTablesItem> tables;
Get the dateTimeBegin value.
Returns: the dateTimeBegin value
/**
* Get the dateTimeBegin value.
*
* @return the dateTimeBegin value
*/
public DateTime dateTimeBegin() {
return this.dateTimeBegin;
}
Set the dateTimeBegin value.
Params: - dateTimeBegin – the dateTimeBegin value to set
Returns: the RankingsResponseInner object itself.
/**
* Set the dateTimeBegin value.
*
* @param dateTimeBegin the dateTimeBegin value to set
* @return the RankingsResponseInner object itself.
*/
public RankingsResponseInner withDateTimeBegin(DateTime dateTimeBegin) {
this.dateTimeBegin = dateTimeBegin;
return this;
}
Get the dateTimeEnd value.
Returns: the dateTimeEnd value
/**
* Get the dateTimeEnd value.
*
* @return the dateTimeEnd value
*/
public DateTime dateTimeEnd() {
return this.dateTimeEnd;
}
Set the dateTimeEnd value.
Params: - dateTimeEnd – the dateTimeEnd value to set
Returns: the RankingsResponseInner object itself.
/**
* Set the dateTimeEnd value.
*
* @param dateTimeEnd the dateTimeEnd value to set
* @return the RankingsResponseInner object itself.
*/
public RankingsResponseInner withDateTimeEnd(DateTime dateTimeEnd) {
this.dateTimeEnd = dateTimeEnd;
return this;
}
Get the tables value.
Returns: the tables value
/**
* Get the tables value.
*
* @return the tables value
*/
public List<RankingsResponseTablesItem> tables() {
return this.tables;
}
Set the tables value.
Params: - tables – the tables value to set
Returns: the RankingsResponseInner object itself.
/**
* Set the tables value.
*
* @param tables the tables value to set
* @return the RankingsResponseInner object itself.
*/
public RankingsResponseInner withTables(List<RankingsResponseTablesItem> tables) {
this.tables = tables;
return this;
}
}