com.tencentcloudapi.gpm.v20200820.models.DescribeDataRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.gpm.v20200820.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeDataRequest extends AbstractModel{
/**
* Start time in seconds
*/
@SerializedName("StartTime")
@Expose
private Long StartTime;
/**
* End time in seconds
*/
@SerializedName("EndTime")
@Expose
private Long EndTime;
/**
* Time granularity. Valid values: 1: 1 day, 2: 1 hour, 3: 1 minute, 4: 10 minutes, 5: 30 minutes
*/
@SerializedName("TimeType")
@Expose
private Long TimeType;
/**
* MatchCode
*/
@SerializedName("MatchCode")
@Expose
private String MatchCode;
/**
* Get Start time in seconds
* @return StartTime Start time in seconds
*/
public Long getStartTime() {
return this.StartTime;
}
/**
* Set Start time in seconds
* @param StartTime Start time in seconds
*/
public void setStartTime(Long StartTime) {
this.StartTime = StartTime;
}
/**
* Get End time in seconds
* @return EndTime End time in seconds
*/
public Long getEndTime() {
return this.EndTime;
}
/**
* Set End time in seconds
* @param EndTime End time in seconds
*/
public void setEndTime(Long EndTime) {
this.EndTime = EndTime;
}
/**
* Get Time granularity. Valid values: 1: 1 day, 2: 1 hour, 3: 1 minute, 4: 10 minutes, 5: 30 minutes
* @return TimeType Time granularity. Valid values: 1: 1 day, 2: 1 hour, 3: 1 minute, 4: 10 minutes, 5: 30 minutes
*/
public Long getTimeType() {
return this.TimeType;
}
/**
* Set Time granularity. Valid values: 1: 1 day, 2: 1 hour, 3: 1 minute, 4: 10 minutes, 5: 30 minutes
* @param TimeType Time granularity. Valid values: 1: 1 day, 2: 1 hour, 3: 1 minute, 4: 10 minutes, 5: 30 minutes
*/
public void setTimeType(Long TimeType) {
this.TimeType = TimeType;
}
/**
* Get MatchCode
* @return MatchCode MatchCode
*/
public String getMatchCode() {
return this.MatchCode;
}
/**
* Set MatchCode
* @param MatchCode MatchCode
*/
public void setMatchCode(String MatchCode) {
this.MatchCode = MatchCode;
}
public DescribeDataRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeDataRequest(DescribeDataRequest source) {
if (source.StartTime != null) {
this.StartTime = new Long(source.StartTime);
}
if (source.EndTime != null) {
this.EndTime = new Long(source.EndTime);
}
if (source.TimeType != null) {
this.TimeType = new Long(source.TimeType);
}
if (source.MatchCode != null) {
this.MatchCode = new String(source.MatchCode);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "StartTime", this.StartTime);
this.setParamSimple(map, prefix + "EndTime", this.EndTime);
this.setParamSimple(map, prefix + "TimeType", this.TimeType);
this.setParamSimple(map, prefix + "MatchCode", this.MatchCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy