com.aliyun.neuron20211115.models.BatchGrantRolesCmd Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.neuron20211115.models;
import com.aliyun.tea.*;
public class BatchGrantRolesCmd extends TeaModel {
@NameInMap("accountId")
public String accountId;
@NameInMap("roleIds")
public java.util.List roleIds;
public static BatchGrantRolesCmd build(java.util.Map map) throws Exception {
BatchGrantRolesCmd self = new BatchGrantRolesCmd();
return TeaModel.build(map, self);
}
public BatchGrantRolesCmd setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public BatchGrantRolesCmd setRoleIds(java.util.List roleIds) {
this.roleIds = roleIds;
return this;
}
public java.util.List getRoleIds() {
return this.roleIds;
}
}