com.aliyun.dingtalkchengfeng_1_0.models.ListSlsLogRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class ListSlsLogRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* it-hr
*/
@NameInMap("appCode")
public String appCode;
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
@NameInMap("startTime")
public Long startTime;
public static ListSlsLogRequest build(java.util.Map map) throws Exception {
ListSlsLogRequest self = new ListSlsLogRequest();
return TeaModel.build(map, self);
}
public ListSlsLogRequest setAppCode(String appCode) {
this.appCode = appCode;
return this;
}
public String getAppCode() {
return this.appCode;
}
public ListSlsLogRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public ListSlsLogRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListSlsLogRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public ListSlsLogRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}