com.aliyun.eventbridge.models.DeleteTargetsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-client Show documentation
Show all versions of eventbridge-client Show documentation
Alibaba Cloud eventbridge SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;
import com.aliyun.tea.*;
/**
* The response of delete Targets
*/
public class DeleteTargetsResponse extends TeaModel {
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("ResourceOwnerAccountId")
@Validation(required = true)
public String resourceOwnerAccountId;
@NameInMap("ErrorEntriesCount")
@Validation(required = true)
public Integer errorEntriesCount;
@NameInMap("ErrorEntries")
@Validation(required = true)
public java.util.List errorEntries;
public static DeleteTargetsResponse build(java.util.Map map) {
DeleteTargetsResponse self = new DeleteTargetsResponse();
return TeaModel.build(map, self);
}
public DeleteTargetsResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteTargetsResponse setResourceOwnerAccountId(String resourceOwnerAccountId) {
this.resourceOwnerAccountId = resourceOwnerAccountId;
return this;
}
public String getResourceOwnerAccountId() {
return this.resourceOwnerAccountId;
}
public DeleteTargetsResponse setErrorEntriesCount(Integer errorEntriesCount) {
this.errorEntriesCount = errorEntriesCount;
return this;
}
public Integer getErrorEntriesCount() {
return this.errorEntriesCount;
}
public DeleteTargetsResponse setErrorEntries(java.util.List errorEntries) {
this.errorEntries = errorEntries;
return this;
}
public java.util.List getErrorEntries() {
return this.errorEntries;
}
}