All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.eventbridge.models.PutEventsResponse Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy