com.tencentcloudapi.tcb.v20180608.models.LoginStatistic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-tcb Show documentation
Show all versions of tencentcloud-sdk-java-tcb Show documentation
Tencent Cloud Open 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.tcb.v20180608.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class LoginStatistic extends AbstractModel{
/**
* 统计类型 新增NEWUSER 和登录 LOGIN
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("StatisticalType")
@Expose
private String StatisticalType;
/**
* 统计周期:日DAY,周WEEK,月MONTH
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("StatisticalCycle")
@Expose
private String StatisticalCycle;
/**
* 统计总量
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Count")
@Expose
private Long Count;
/**
* 更新时间
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("UpdateTime")
@Expose
private String UpdateTime;
/**
* Get 统计类型 新增NEWUSER 和登录 LOGIN
注意:此字段可能返回 null,表示取不到有效值。
* @return StatisticalType 统计类型 新增NEWUSER 和登录 LOGIN
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getStatisticalType() {
return this.StatisticalType;
}
/**
* Set 统计类型 新增NEWUSER 和登录 LOGIN
注意:此字段可能返回 null,表示取不到有效值。
* @param StatisticalType 统计类型 新增NEWUSER 和登录 LOGIN
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setStatisticalType(String StatisticalType) {
this.StatisticalType = StatisticalType;
}
/**
* Get 统计周期:日DAY,周WEEK,月MONTH
注意:此字段可能返回 null,表示取不到有效值。
* @return StatisticalCycle 统计周期:日DAY,周WEEK,月MONTH
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getStatisticalCycle() {
return this.StatisticalCycle;
}
/**
* Set 统计周期:日DAY,周WEEK,月MONTH
注意:此字段可能返回 null,表示取不到有效值。
* @param StatisticalCycle 统计周期:日DAY,周WEEK,月MONTH
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setStatisticalCycle(String StatisticalCycle) {
this.StatisticalCycle = StatisticalCycle;
}
/**
* Get 统计总量
注意:此字段可能返回 null,表示取不到有效值。
* @return Count 统计总量
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getCount() {
return this.Count;
}
/**
* Set 统计总量
注意:此字段可能返回 null,表示取不到有效值。
* @param Count 统计总量
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setCount(Long Count) {
this.Count = Count;
}
/**
* Get 更新时间
注意:此字段可能返回 null,表示取不到有效值。
* @return UpdateTime 更新时间
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getUpdateTime() {
return this.UpdateTime;
}
/**
* Set 更新时间
注意:此字段可能返回 null,表示取不到有效值。
* @param UpdateTime 更新时间
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setUpdateTime(String UpdateTime) {
this.UpdateTime = UpdateTime;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "StatisticalType", this.StatisticalType);
this.setParamSimple(map, prefix + "StatisticalCycle", this.StatisticalCycle);
this.setParamSimple(map, prefix + "Count", this.Count);
this.setParamSimple(map, prefix + "UpdateTime", this.UpdateTime);
}
}