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

com.aliyun.dingtalkh5package_1_0.models.PublishPackageRequest 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.dingtalkh5package_1_0.models;

import com.aliyun.tea.*;

public class PublishPackageRequest extends TeaModel {
    /**
     * example:
     * 

1234

*/ @NameInMap("agentId") public Long agentId; /** * example: *

1234

*/ @NameInMap("appId") public Long appId; /** *

This parameter is required.

* * example: *

0.0.1

*/ @NameInMap("version") public String version; public static PublishPackageRequest build(java.util.Map map) throws Exception { PublishPackageRequest self = new PublishPackageRequest(); return TeaModel.build(map, self); } public PublishPackageRequest setAgentId(Long agentId) { this.agentId = agentId; return this; } public Long getAgentId() { return this.agentId; } public PublishPackageRequest setAppId(Long appId) { this.appId = appId; return this; } public Long getAppId() { return this.appId; } public PublishPackageRequest setVersion(String version) { this.version = version; return this; } public String getVersion() { return this.version; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy