![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkminiapp_1_0.models.GetMiniAppMetaDataRequest 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.dingtalkminiapp_1_0.models;
import com.aliyun.tea.*;
public class GetMiniAppMetaDataRequest extends TeaModel {
@NameInMap("bundleId")
public String bundleId;
@NameInMap("bundleIdTableGmtModified")
public java.util.Map bundleIdTableGmtModified;
@NameInMap("fromAppName")
public String fromAppName;
@NameInMap("miniAppIdTableGmtModified")
public java.util.Map miniAppIdTableGmtModified;
public static GetMiniAppMetaDataRequest build(java.util.Map map) throws Exception {
GetMiniAppMetaDataRequest self = new GetMiniAppMetaDataRequest();
return TeaModel.build(map, self);
}
public GetMiniAppMetaDataRequest setBundleId(String bundleId) {
this.bundleId = bundleId;
return this;
}
public String getBundleId() {
return this.bundleId;
}
public GetMiniAppMetaDataRequest setBundleIdTableGmtModified(java.util.Map bundleIdTableGmtModified) {
this.bundleIdTableGmtModified = bundleIdTableGmtModified;
return this;
}
public java.util.Map getBundleIdTableGmtModified() {
return this.bundleIdTableGmtModified;
}
public GetMiniAppMetaDataRequest setFromAppName(String fromAppName) {
this.fromAppName = fromAppName;
return this;
}
public String getFromAppName() {
return this.fromAppName;
}
public GetMiniAppMetaDataRequest setMiniAppIdTableGmtModified(java.util.Map miniAppIdTableGmtModified) {
this.miniAppIdTableGmtModified = miniAppIdTableGmtModified;
return this;
}
public java.util.Map getMiniAppIdTableGmtModified() {
return this.miniAppIdTableGmtModified;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy