com.aliyun.cs20151215.models.DeletePolicyInstanceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class DeletePolicyInstanceResponseBody extends TeaModel {
/**
* A list of policy instances.
*/
@NameInMap("instances")
public java.util.List instances;
public static DeletePolicyInstanceResponseBody build(java.util.Map map) throws Exception {
DeletePolicyInstanceResponseBody self = new DeletePolicyInstanceResponseBody();
return TeaModel.build(map, self);
}
public DeletePolicyInstanceResponseBody setInstances(java.util.List instances) {
this.instances = instances;
return this;
}
public java.util.List getInstances() {
return this.instances;
}
}