com.aliyun.bpstudio20210931.models.GetTokenRequest 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 GetTokenRequest extends TeaModel {
/**
* The ID of the resource group.
*
* example:
* rg-aekzhfgmw4e6fwq
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
public static GetTokenRequest build(java.util.Map map) throws Exception {
GetTokenRequest self = new GetTokenRequest();
return TeaModel.build(map, self);
}
public GetTokenRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
}