com.aliyun.bpstudio20210931.models.GetApplicationVariables4FailRequest 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 GetApplicationVariables4FailRequest extends TeaModel {
/**
* example:
* Q2P4O9YSOKCT35L9
*/
@NameInMap("AppId")
public String appId;
public static GetApplicationVariables4FailRequest build(java.util.Map map) throws Exception {
GetApplicationVariables4FailRequest self = new GetApplicationVariables4FailRequest();
return TeaModel.build(map, self);
}
public GetApplicationVariables4FailRequest setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
}