com.aliyun.dingtalkhrm_1_0.models.UpdateHrmVersionRollBackStatusRequest 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 UpdateHrmVersionRollBackStatusRequest extends TeaModel {
/**
* example:
* show
*/
@NameInMap("configValue")
public String configValue;
/**
* example:
* 1231231232
*/
@NameInMap("optUserId")
public String optUserId;
public static UpdateHrmVersionRollBackStatusRequest build(java.util.Map map) throws Exception {
UpdateHrmVersionRollBackStatusRequest self = new UpdateHrmVersionRollBackStatusRequest();
return TeaModel.build(map, self);
}
public UpdateHrmVersionRollBackStatusRequest setConfigValue(String configValue) {
this.configValue = configValue;
return this;
}
public String getConfigValue() {
return this.configValue;
}
public UpdateHrmVersionRollBackStatusRequest setOptUserId(String optUserId) {
this.optUserId = optUserId;
return this;
}
public String getOptUserId() {
return this.optUserId;
}
}