![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.SyncSolutionStatusRequest 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class SyncSolutionStatusRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* start
*/
@NameInMap("solutionStatus")
public String solutionStatus;
/**
* This parameter is required.
*
* example:
* onboarding_v2
*/
@NameInMap("solutionType")
public String solutionType;
/**
* This parameter is required.
*
* example:
* 12
*/
@NameInMap("tenantId")
public Long tenantId;
/**
* This parameter is required.
*/
@NameInMap("userIds")
public java.util.List userIds;
public static SyncSolutionStatusRequest build(java.util.Map map) throws Exception {
SyncSolutionStatusRequest self = new SyncSolutionStatusRequest();
return TeaModel.build(map, self);
}
public SyncSolutionStatusRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public SyncSolutionStatusRequest setSolutionStatus(String solutionStatus) {
this.solutionStatus = solutionStatus;
return this;
}
public String getSolutionStatus() {
return this.solutionStatus;
}
public SyncSolutionStatusRequest setSolutionType(String solutionType) {
this.solutionType = solutionType;
return this;
}
public String getSolutionType() {
return this.solutionType;
}
public SyncSolutionStatusRequest setTenantId(Long tenantId) {
this.tenantId = tenantId;
return this;
}
public Long getTenantId() {
return this.tenantId;
}
public SyncSolutionStatusRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy