com.aliyun.dingtalkcontent_1_0.models.GetFeedRequest 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 GetFeedRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 50730********40554
*/
@NameInMap("mcnId")
public String mcnId;
public static GetFeedRequest build(java.util.Map map) throws Exception {
GetFeedRequest self = new GetFeedRequest();
return TeaModel.build(map, self);
}
public GetFeedRequest setMcnId(String mcnId) {
this.mcnId = mcnId;
return this;
}
public String getMcnId() {
return this.mcnId;
}
}