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

com.aliyun.dingtalkpackage_1_0.models.HPublishPackageRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkpackage_1_0.models;

import com.aliyun.tea.*;

public class HPublishPackageRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

5000000002761167

*/ @NameInMap("miniAppId") public String miniAppId; /** *

This parameter is required.

* * example: *

0.0.1

*/ @NameInMap("version") public String version; public static HPublishPackageRequest build(java.util.Map map) throws Exception { HPublishPackageRequest self = new HPublishPackageRequest(); return TeaModel.build(map, self); } public HPublishPackageRequest setMiniAppId(String miniAppId) { this.miniAppId = miniAppId; return this; } public String getMiniAppId() { return this.miniAppId; } public HPublishPackageRequest setVersion(String version) { this.version = version; return this; } public String getVersion() { return this.version; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy