![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbay_max_1_0.models.QueryBaymaxSkillLogRequest 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.dingtalkbay_max_1_0.models;
import com.aliyun.tea.*;
public class QueryBaymaxSkillLogRequest extends TeaModel {
@NameInMap("from")
public Integer from;
/**
* This parameter is required.
*
* example:
* 14da****2760
*/
@NameInMap("skillExecuteId")
public String skillExecuteId;
@NameInMap("to")
public Integer to;
public static QueryBaymaxSkillLogRequest build(java.util.Map map) throws Exception {
QueryBaymaxSkillLogRequest self = new QueryBaymaxSkillLogRequest();
return TeaModel.build(map, self);
}
public QueryBaymaxSkillLogRequest setFrom(Integer from) {
this.from = from;
return this;
}
public Integer getFrom() {
return this.from;
}
public QueryBaymaxSkillLogRequest setSkillExecuteId(String skillExecuteId) {
this.skillExecuteId = skillExecuteId;
return this;
}
public String getSkillExecuteId() {
return this.skillExecuteId;
}
public QueryBaymaxSkillLogRequest setTo(Integer to) {
this.to = to;
return this;
}
public Integer getTo() {
return this.to;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy