com.aliyun.dingtalkexclusive_1_0.models.RollbackMiniAppVersionRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class RollbackMiniAppVersionRequest extends TeaModel {
/**
* example:
* 5000000003
*/
@NameInMap("miniAppId")
public String miniAppId;
/**
* example:
* 0.0.5
*/
@NameInMap("rollbackVersion")
public String rollbackVersion;
/**
* example:
* 0.0.4
*/
@NameInMap("targetVersion")
public String targetVersion;
public static RollbackMiniAppVersionRequest build(java.util.Map map) throws Exception {
RollbackMiniAppVersionRequest self = new RollbackMiniAppVersionRequest();
return TeaModel.build(map, self);
}
public RollbackMiniAppVersionRequest setMiniAppId(String miniAppId) {
this.miniAppId = miniAppId;
return this;
}
public String getMiniAppId() {
return this.miniAppId;
}
public RollbackMiniAppVersionRequest setRollbackVersion(String rollbackVersion) {
this.rollbackVersion = rollbackVersion;
return this;
}
public String getRollbackVersion() {
return this.rollbackVersion;
}
public RollbackMiniAppVersionRequest setTargetVersion(String targetVersion) {
this.targetVersion = targetVersion;
return this;
}
public String getTargetVersion() {
return this.targetVersion;
}
}