![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.bpstudio20210931.models.AppFailBackRequest 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 AppFailBackRequest extends TeaModel {
/**
* The application ID.
*
* example:
* 61ZW1DY5Y3FSAOO2
*/
@NameInMap("ApplicationId")
public String applicationId;
public static AppFailBackRequest build(java.util.Map map) throws Exception {
AppFailBackRequest self = new AppFailBackRequest();
return TeaModel.build(map, self);
}
public AppFailBackRequest setApplicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
public String getApplicationId() {
return this.applicationId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy