All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.cdn20180510.models.DescribeDomainTopUrlVisitRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cdn20180510.models;

import com.aliyun.tea.*;

public class DescribeDomainTopUrlVisitRequest extends TeaModel {
    /**
     * 

The accelerated domain name that you want to query.

*/ @NameInMap("DomainName") public String domainName; /** *

The end of the time range to query.

*
*

Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

*
*

> The end time must be later than the start time. The maximum time range that can be specified is seven days.

*/ @NameInMap("EndTime") public String endTime; /** *

The method that is used to sort the returned URLs. Default value: **pv**. Valid values:

*
*

* **traf**: by network traffic

*

* **pv**: by the number of page views

*/ @NameInMap("SortBy") public String sortBy; /** *

The start of the time range to query.

*
*

Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

*
*

If you want to query data of a specific day, we recommend that you set the value in the yyyy-MM-ddT16:00:00Z format.

*/ @NameInMap("StartTime") public String startTime; public static DescribeDomainTopUrlVisitRequest build(java.util.Map map) throws Exception { DescribeDomainTopUrlVisitRequest self = new DescribeDomainTopUrlVisitRequest(); return TeaModel.build(map, self); } public DescribeDomainTopUrlVisitRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainTopUrlVisitRequest setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public DescribeDomainTopUrlVisitRequest setSortBy(String sortBy) { this.sortBy = sortBy; return this; } public String getSortBy() { return this.sortBy; } public DescribeDomainTopUrlVisitRequest setStartTime(String startTime) { this.startTime = startTime; return this; } public String getStartTime() { return this.startTime; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy