All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.bpstudio20210931.models.ValuateApplicationRequest Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy