com.aliyun.dingtalkim_1_0.models.InstallRobotToOrgRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class InstallRobotToOrgRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 这是小丁
*/
@NameInMap("brief")
public String brief;
/**
* This parameter is required.
*
* example:
* 我是小丁
*/
@NameInMap("description")
public String description;
/**
* This parameter is required.
*
* example:
* @lALPDe7s26Bre
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*
* example:
* 小丁
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("outgoingToken")
public String outgoingToken;
/**
* This parameter is required.
*
* example:
* https://*.com
*/
@NameInMap("outgoingUrl")
public String outgoingUrl;
/**
* This parameter is required.
*
* example:
* @lALPDe7s26Bre
*/
@NameInMap("previewMediaId")
public String previewMediaId;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("robotCode")
public String robotCode;
public static InstallRobotToOrgRequest build(java.util.Map map) throws Exception {
InstallRobotToOrgRequest self = new InstallRobotToOrgRequest();
return TeaModel.build(map, self);
}
public InstallRobotToOrgRequest setBrief(String brief) {
this.brief = brief;
return this;
}
public String getBrief() {
return this.brief;
}
public InstallRobotToOrgRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public InstallRobotToOrgRequest setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public InstallRobotToOrgRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public InstallRobotToOrgRequest setOutgoingToken(String outgoingToken) {
this.outgoingToken = outgoingToken;
return this;
}
public String getOutgoingToken() {
return this.outgoingToken;
}
public InstallRobotToOrgRequest setOutgoingUrl(String outgoingUrl) {
this.outgoingUrl = outgoingUrl;
return this;
}
public String getOutgoingUrl() {
return this.outgoingUrl;
}
public InstallRobotToOrgRequest setPreviewMediaId(String previewMediaId) {
this.previewMediaId = previewMediaId;
return this;
}
public String getPreviewMediaId() {
return this.previewMediaId;
}
public InstallRobotToOrgRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
}