com.antgroup.antchain.openapi.rms.models.BatchcreateTraasmetaWorkspacegroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class BatchcreateTraasmetaWorkspacegroupRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// workspace_groups
@NameInMap("workspace_groups")
@Validation(required = true)
public java.util.List workspaceGroups;
public static BatchcreateTraasmetaWorkspacegroupRequest build(java.util.Map map) throws Exception {
BatchcreateTraasmetaWorkspacegroupRequest self = new BatchcreateTraasmetaWorkspacegroupRequest();
return TeaModel.build(map, self);
}
public BatchcreateTraasmetaWorkspacegroupRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public BatchcreateTraasmetaWorkspacegroupRequest setWorkspaceGroups(java.util.List workspaceGroups) {
this.workspaceGroups = workspaceGroups;
return this;
}
public java.util.List getWorkspaceGroups() {
return this.workspaceGroups;
}
}