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

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

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

import com.aliyun.tea.*;

public class DescribeDomainPvDataRequest extends TeaModel {
    /**
     * 

The accelerated domain name. You can specify only one domain name.

*/ @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.

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

The beginning 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.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy