All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.IndustryManufactureCommonEventRequest Maven / Gradle / Ivy

// 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 {
    // add 创建事件/update 更新事件
    @NameInMap("action")
    public String action;

    // 应用appkey
    @NameInMap("appKey")
    public String appKey;

    @NameInMap("bizData")
    public java.util.Map bizData;

    // 事件集合,目前仅1个有效
    @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 - 2024 Weber Informatics LLC | Privacy Policy