com.aliyun.bpstudio20210931.models.ValuateApplicationRequest 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 ValuateApplicationRequest extends TeaModel {
/**
* The operation that you want to perform. Set the value to ValuateApplication.
* This parameter is required.
*
* example:
* 02S7UU41WKJL7ERR
*/
@NameInMap("ApplicationId")
public String applicationId;
/**
* The ID of the resource group to which the application you want to query belongs.
*
* example:
* 1600765710019
*/
@NameInMap("ClientToken")
public String clientToken;
/**
* The ID of the application.
*
* example:
* rg-acfmyjt3c5om3hi
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
public static ValuateApplicationRequest build(java.util.Map map) throws Exception {
ValuateApplicationRequest self = new ValuateApplicationRequest();
return TeaModel.build(map, self);
}
public ValuateApplicationRequest setApplicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
public String getApplicationId() {
return this.applicationId;
}
public ValuateApplicationRequest setClientToken(String clientToken) {
this.clientToken = clientToken;
return this;
}
public String getClientToken() {
return this.clientToken;
}
public ValuateApplicationRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
}