com.aliyun.dingtalkconference_1_0.models.QueryFlashMinutesSummaryRequest 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.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class QueryFlashMinutesSummaryRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cloud_record
*/
@NameInMap("bizType")
public String bizType;
/**
* This parameter is required.
*
* example:
* lJcRnm39OsU4jlFVmRG9KXXXX
*/
@NameInMap("recorderUnionId")
public String recorderUnionId;
public static QueryFlashMinutesSummaryRequest build(java.util.Map map) throws Exception {
QueryFlashMinutesSummaryRequest self = new QueryFlashMinutesSummaryRequest();
return TeaModel.build(map, self);
}
public QueryFlashMinutesSummaryRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public QueryFlashMinutesSummaryRequest setRecorderUnionId(String recorderUnionId) {
this.recorderUnionId = recorderUnionId;
return this;
}
public String getRecorderUnionId() {
return this.recorderUnionId;
}
}