com.aliyun.bpstudio20210931.models.GetApplicationVariablesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpstudio20210931 Show documentation
Show all versions of bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.bpstudio20210931.models;
import com.aliyun.tea.*;
public class GetApplicationVariablesRequest extends TeaModel {
/**
* example:
* Q2P4O9YSOKCQ35L9
*/
@NameInMap("AppId")
public String appId;
public static GetApplicationVariablesRequest build(java.util.Map map) throws Exception {
GetApplicationVariablesRequest self = new GetApplicationVariablesRequest();
return TeaModel.build(map, self);
}
public GetApplicationVariablesRequest setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
}