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

com.aliyun.eventbridge.models.DeleteTargetsResponse 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.*;

/**
 * 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy