com.aliyun.eventbridge.models.QueryEventTracesResponse 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
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;
}
}