com.aliyun.dingtalkyida_1_0.models.ListOperationLogsRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class ListOperationLogsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_XCE0EVXS6DYG3YDYC5RD
*/
@NameInMap("appType")
public String appType;
/**
* example:
* FORM-INST-123
*/
@NameInMap("formInstanceIdList")
public java.util.List formInstanceIdList;
/**
* This parameter is required.
*
* example:
* FORM-GX866MC1NC1VOFF6WVQW33FD16E23L3CPMKVKA
*/
@NameInMap("formUuid")
public String formUuid;
/**
* This parameter is required.
*
* example:
* 09866181UTZVVD4R3DC955FNKIM52HVPU5WWK7
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* manager9358
*/
@NameInMap("userId")
public String userId;
public static ListOperationLogsRequest build(java.util.Map map) throws Exception {
ListOperationLogsRequest self = new ListOperationLogsRequest();
return TeaModel.build(map, self);
}
public ListOperationLogsRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ListOperationLogsRequest setFormInstanceIdList(java.util.List formInstanceIdList) {
this.formInstanceIdList = formInstanceIdList;
return this;
}
public java.util.List getFormInstanceIdList() {
return this.formInstanceIdList;
}
public ListOperationLogsRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public ListOperationLogsRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public ListOperationLogsRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}