com.aliyun.dingtalkminiapp_1_0.models.CreateMiniAppPluginRequest 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.dingtalkminiapp_1_0.models;
import com.aliyun.tea.*;
public class CreateMiniAppPluginRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*/
@NameInMap("bizType")
public Integer bizType;
@NameInMap("bundleId")
public String bundleId;
/**
* This parameter is required.
*/
@NameInMap("desc")
public String desc;
/**
* This parameter is required.
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
public static CreateMiniAppPluginRequest build(java.util.Map map) throws Exception {
CreateMiniAppPluginRequest self = new CreateMiniAppPluginRequest();
return TeaModel.build(map, self);
}
public CreateMiniAppPluginRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public CreateMiniAppPluginRequest setBizType(Integer bizType) {
this.bizType = bizType;
return this;
}
public Integer getBizType() {
return this.bizType;
}
public CreateMiniAppPluginRequest setBundleId(String bundleId) {
this.bundleId = bundleId;
return this;
}
public String getBundleId() {
return this.bundleId;
}
public CreateMiniAppPluginRequest setDesc(String desc) {
this.desc = desc;
return this;
}
public String getDesc() {
return this.desc;
}
public CreateMiniAppPluginRequest setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public CreateMiniAppPluginRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}