com.aliyun.dingtalkcontent_1_0.models.CreateFeedResponseBody 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.dingtalkcontent_1_0.models;
import com.aliyun.tea.*;
public class CreateFeedResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* c497****-8a89-****-bc9b-*****48610d3
*/
@NameInMap("feedId")
public String feedId;
public static CreateFeedResponseBody build(java.util.Map map) throws Exception {
CreateFeedResponseBody self = new CreateFeedResponseBody();
return TeaModel.build(map, self);
}
public CreateFeedResponseBody setFeedId(String feedId) {
this.feedId = feedId;
return this;
}
public String getFeedId() {
return this.feedId;
}
}