![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.IndustryManufactureCommonEventRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class IndustryManufactureCommonEventRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("action")
public String action;
/**
* This parameter is required.
*/
@NameInMap("appKey")
public String appKey;
@NameInMap("bizData")
public java.util.Map bizData;
/**
* This parameter is required.
*/
@NameInMap("eventType")
public java.util.List eventType;
public static IndustryManufactureCommonEventRequest build(java.util.Map map) throws Exception {
IndustryManufactureCommonEventRequest self = new IndustryManufactureCommonEventRequest();
return TeaModel.build(map, self);
}
public IndustryManufactureCommonEventRequest setAction(String action) {
this.action = action;
return this;
}
public String getAction() {
return this.action;
}
public IndustryManufactureCommonEventRequest setAppKey(String appKey) {
this.appKey = appKey;
return this;
}
public String getAppKey() {
return this.appKey;
}
public IndustryManufactureCommonEventRequest setBizData(java.util.Map bizData) {
this.bizData = bizData;
return this;
}
public java.util.Map getBizData() {
return this.bizData;
}
public IndustryManufactureCommonEventRequest setEventType(java.util.List eventType) {
this.eventType = eventType;
return this;
}
public java.util.List getEventType() {
return this.eventType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy