com.aliyun.dingtalkpackage_1_0.models.HUploadPackageRequest 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.dingtalkpackage_1_0.models;
import com.aliyun.tea.*;
public class HUploadPackageRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 5000000002793153
*/
@NameInMap("miniAppId")
public String miniAppId;
/**
* This parameter is required.
*
* example:
* xxxx
*/
@NameInMap("ossObjectKey")
public String ossObjectKey;
public static HUploadPackageRequest build(java.util.Map map) throws Exception {
HUploadPackageRequest self = new HUploadPackageRequest();
return TeaModel.build(map, self);
}
public HUploadPackageRequest setMiniAppId(String miniAppId) {
this.miniAppId = miniAppId;
return this;
}
public String getMiniAppId() {
return this.miniAppId;
}
public HUploadPackageRequest setOssObjectKey(String ossObjectKey) {
this.ossObjectKey = ossObjectKey;
return this;
}
public String getOssObjectKey() {
return this.ossObjectKey;
}
}