com.aliyun.dingtalkrobot_1_0.models.BatchSendOTOResponseBody 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class BatchSendOTOResponseBody extends TeaModel {
@NameInMap("flowControlledStaffIdList")
public java.util.List flowControlledStaffIdList;
@NameInMap("invalidStaffIdList")
public java.util.List invalidStaffIdList;
@NameInMap("processQueryKey")
public String processQueryKey;
public static BatchSendOTOResponseBody build(java.util.Map map) throws Exception {
BatchSendOTOResponseBody self = new BatchSendOTOResponseBody();
return TeaModel.build(map, self);
}
public BatchSendOTOResponseBody setFlowControlledStaffIdList(java.util.List flowControlledStaffIdList) {
this.flowControlledStaffIdList = flowControlledStaffIdList;
return this;
}
public java.util.List getFlowControlledStaffIdList() {
return this.flowControlledStaffIdList;
}
public BatchSendOTOResponseBody setInvalidStaffIdList(java.util.List invalidStaffIdList) {
this.invalidStaffIdList = invalidStaffIdList;
return this;
}
public java.util.List getInvalidStaffIdList() {
return this.invalidStaffIdList;
}
public BatchSendOTOResponseBody setProcessQueryKey(String processQueryKey) {
this.processQueryKey = processQueryKey;
return this;
}
public String getProcessQueryKey() {
return this.processQueryKey;
}
}