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

com.aliyun.dingtalkagoal_1_0.models.OpenAgoalKeyActionDTO Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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: *

https://agoal.dingtalk.com

*/ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy