com.aliyun.dingtalklive_1_0.models.GetOrgLiveListShrinkRequest 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.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class GetOrgLiveListShrinkRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("corpId")
public String corpId;
@NameInMap("requestBody")
public String requestBodyShrink;
public static GetOrgLiveListShrinkRequest build(java.util.Map map) throws Exception {
GetOrgLiveListShrinkRequest self = new GetOrgLiveListShrinkRequest();
return TeaModel.build(map, self);
}
public GetOrgLiveListShrinkRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetOrgLiveListShrinkRequest setRequestBodyShrink(String requestBodyShrink) {
this.requestBodyShrink = requestBodyShrink;
return this;
}
public String getRequestBodyShrink() {
return this.requestBodyShrink;
}
}