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

com.aliyun.dingtalkh5package_1_0.models.CreatePackageRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkh5package_1_0.models;

import com.aliyun.tea.*;

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

1234

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

1234

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

https://example.com/myapp/index.html

*/ @NameInMap("homeUrl") public String homeUrl; /** * example: *

aaaaaa/bbbbbb

*/ @NameInMap("ossObjectKey") public String ossObjectKey; public static CreatePackageRequest build(java.util.Map map) throws Exception { CreatePackageRequest self = new CreatePackageRequest(); return TeaModel.build(map, self); } public CreatePackageRequest setAgentId(Long agentId) { this.agentId = agentId; return this; } public Long getAgentId() { return this.agentId; } public CreatePackageRequest setAppId(Long appId) { this.appId = appId; return this; } public Long getAppId() { return this.appId; } public CreatePackageRequest setHomeUrl(String homeUrl) { this.homeUrl = homeUrl; return this; } public String getHomeUrl() { return this.homeUrl; } public CreatePackageRequest setOssObjectKey(String ossObjectKey) { this.ossObjectKey = ossObjectKey; return this; } public String getOssObjectKey() { return this.ossObjectKey; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy