com.aliyun.ccc20200701.models.ListRolesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccc20200701 Show documentation
Show all versions of ccc20200701 Show documentation
Alibaba Cloud cloud call center (20200701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;
import com.aliyun.tea.*;
public class ListRolesRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ccc-test
*/
@NameInMap("InstanceId")
public String instanceId;
public static ListRolesRequest build(java.util.Map map) throws Exception {
ListRolesRequest self = new ListRolesRequest();
return TeaModel.build(map, self);
}
public ListRolesRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
}