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

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

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;

import com.aliyun.tea.*;

public class QueryEventTracesResponse extends TeaModel {
    @NameInMap("EventTraceList")
    @Validation(required = true)
    public java.util.List eventTraceList;

    public static QueryEventTracesResponse build(java.util.Map map) {
        QueryEventTracesResponse self = new QueryEventTracesResponse();
        return TeaModel.build(map, self);
    }

    public QueryEventTracesResponse setEventTraceList(java.util.List eventTraceList) {
        this.eventTraceList = eventTraceList;
        return this;
    }
    public java.util.List getEventTraceList() {
        return this.eventTraceList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy