![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkminiapp_1_0.models.RollBackVersionRequest 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.dingtalkminiapp_1_0.models;
import com.aliyun.tea.*;
public class RollBackVersionRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bundleId")
public String bundleId;
/**
* This parameter is required.
*/
@NameInMap("miniAppId")
public String miniAppId;
/**
* This parameter is required.
*/
@NameInMap("rollbackVersion")
public String rollbackVersion;
/**
* This parameter is required.
*/
@NameInMap("targetVersion")
public String targetVersion;
public static RollBackVersionRequest build(java.util.Map map) throws Exception {
RollBackVersionRequest self = new RollBackVersionRequest();
return TeaModel.build(map, self);
}
public RollBackVersionRequest setBundleId(String bundleId) {
this.bundleId = bundleId;
return this;
}
public String getBundleId() {
return this.bundleId;
}
public RollBackVersionRequest setMiniAppId(String miniAppId) {
this.miniAppId = miniAppId;
return this;
}
public String getMiniAppId() {
return this.miniAppId;
}
public RollBackVersionRequest setRollbackVersion(String rollbackVersion) {
this.rollbackVersion = rollbackVersion;
return this;
}
public String getRollbackVersion() {
return this.rollbackVersion;
}
public RollBackVersionRequest setTargetVersion(String targetVersion) {
this.targetVersion = targetVersion;
return this;
}
public String getTargetVersion() {
return this.targetVersion;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy