![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkmicro_app_1_0.models.RollbackInnerAppVersionRequest 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.dingtalkmicro_app_1_0.models;
import com.aliyun.tea.*;
public class RollbackInnerAppVersionRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("appVersionId")
public Long appVersionId;
/**
* This parameter is required.
*
* example:
* xxx
*/
@NameInMap("opUnionId")
public String opUnionId;
public static RollbackInnerAppVersionRequest build(java.util.Map map) throws Exception {
RollbackInnerAppVersionRequest self = new RollbackInnerAppVersionRequest();
return TeaModel.build(map, self);
}
public RollbackInnerAppVersionRequest setAppVersionId(Long appVersionId) {
this.appVersionId = appVersionId;
return this;
}
public Long getAppVersionId() {
return this.appVersionId;
}
public RollbackInnerAppVersionRequest setOpUnionId(String opUnionId) {
this.opUnionId = opUnionId;
return this;
}
public String getOpUnionId() {
return this.opUnionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy