com.aliyun.dingtalkagoal_1_0.models.OpenAgoalKeyActionDTO 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.dingtalkagoal_1_0.models;
import com.aliyun.tea.*;
public class OpenAgoalKeyActionDTO extends TeaModel {
/**
* This parameter is required.
*
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("keyActionId")
public String keyActionId;
/**
* This parameter is required.
*
* example:
* 测试
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("url")
public String url;
public static OpenAgoalKeyActionDTO build(java.util.Map map) throws Exception {
OpenAgoalKeyActionDTO self = new OpenAgoalKeyActionDTO();
return TeaModel.build(map, self);
}
public OpenAgoalKeyActionDTO setKeyActionId(String keyActionId) {
this.keyActionId = keyActionId;
return this;
}
public String getKeyActionId() {
return this.keyActionId;
}
public OpenAgoalKeyActionDTO setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public OpenAgoalKeyActionDTO setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}