All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkexclusive_1_0.models.RollbackMiniAppVersionRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy