![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.eds_aic20230930.models.ModifyAppRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eds_aic20230930 Show documentation
Show all versions of eds_aic20230930 Show documentation
Alibaba Cloud eds-aic (20230930) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eds_aic20230930.models;
import com.aliyun.tea.*;
public class ModifyAppRequest extends TeaModel {
/**
* example:
* 1234
*/
@NameInMap("AppId")
public Integer appId;
@NameInMap("AppName")
public String appName;
@NameInMap("Description")
public String description;
/**
* example:
*
*/
@NameInMap("IconUrl")
public String iconUrl;
public static ModifyAppRequest build(java.util.Map map) throws Exception {
ModifyAppRequest self = new ModifyAppRequest();
return TeaModel.build(map, self);
}
public ModifyAppRequest setAppId(Integer appId) {
this.appId = appId;
return this;
}
public Integer getAppId() {
return this.appId;
}
public ModifyAppRequest setAppName(String appName) {
this.appName = appName;
return this;
}
public String getAppName() {
return this.appName;
}
public ModifyAppRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ModifyAppRequest setIconUrl(String iconUrl) {
this.iconUrl = iconUrl;
return this;
}
public String getIconUrl() {
return this.iconUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy