com.aliyun.eventbridge.models.PutEventsResponse 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.*;
/**
* put event response
*/
public class PutEventsResponse extends TeaModel {
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("ResourceOwnerAccountId")
@Validation(required = true)
public String resourceOwnerAccountId;
@NameInMap("FailedEntryCount")
public Integer failedEntryCount;
@NameInMap("EntryList")
public java.util.List entryList;
public static PutEventsResponse build(java.util.Map map) {
PutEventsResponse self = new PutEventsResponse();
return TeaModel.build(map, self);
}
public PutEventsResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PutEventsResponse setResourceOwnerAccountId(String resourceOwnerAccountId) {
this.resourceOwnerAccountId = resourceOwnerAccountId;
return this;
}
public String getResourceOwnerAccountId() {
return this.resourceOwnerAccountId;
}
public PutEventsResponse setFailedEntryCount(Integer failedEntryCount) {
this.failedEntryCount = failedEntryCount;
return this;
}
public Integer getFailedEntryCount() {
return this.failedEntryCount;
}
public PutEventsResponse setEntryList(java.util.List entryList) {
this.entryList = entryList;
return this;
}
public java.util.List getEntryList() {
return this.entryList;
}
}