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

com.aliyun.sas20181203.models.GetClientRatioStatisticRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class GetClientRatioStatisticRequest extends TeaModel {
    /**
     * 

The ID of the primary account of the Resource Directory member account.

*
*

call the DescribeMonitorAccounts interface to obtain this parameter.

*
* * example: *

127608589417****

*/ @NameInMap("ResourceDirectoryAccountId") public Long resourceDirectoryAccountId; /** *

An array that consists of the details of a statistical type.

*/ @NameInMap("StatisticTypes") public java.util.List statisticTypes; /** *

The timestamp that specifies the end of the time range to collect statistics. Unit: milliseconds.

*

This parameter is required.

* * example: *

1686412799999

*/ @NameInMap("TimeEnd") public Long timeEnd; /** *

The timestamp that specifies the beginning of the time range to collect statistics. Unit: milliseconds.

*

This parameter is required.

* * example: *

1671382800000

*/ @NameInMap("TimeStart") public Long timeStart; public static GetClientRatioStatisticRequest build(java.util.Map map) throws Exception { GetClientRatioStatisticRequest self = new GetClientRatioStatisticRequest(); return TeaModel.build(map, self); } public GetClientRatioStatisticRequest setResourceDirectoryAccountId(Long resourceDirectoryAccountId) { this.resourceDirectoryAccountId = resourceDirectoryAccountId; return this; } public Long getResourceDirectoryAccountId() { return this.resourceDirectoryAccountId; } public GetClientRatioStatisticRequest setStatisticTypes(java.util.List statisticTypes) { this.statisticTypes = statisticTypes; return this; } public java.util.List getStatisticTypes() { return this.statisticTypes; } public GetClientRatioStatisticRequest setTimeEnd(Long timeEnd) { this.timeEnd = timeEnd; return this; } public Long getTimeEnd() { return this.timeEnd; } public GetClientRatioStatisticRequest setTimeStart(Long timeStart) { this.timeStart = timeStart; return this; } public Long getTimeStart() { return this.timeStart; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy