com.aliyun.eventbridge.models.TracedEvent 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 TracedEvent extends TeaModel {
@NameInMap("EventReceivedTime")
@Validation(required = true)
public String eventReceivedTime;
@NameInMap("EventSource")
@Validation(required = true)
public String eventSource;
@NameInMap("EventId")
@Validation(required = true)
public String eventId;
@NameInMap("EventBusName")
@Validation(required = true)
public String eventBusName;
@NameInMap("EventType")
@Validation(required = true)
public String eventType;
public static TracedEvent build(java.util.Map map) {
TracedEvent self = new TracedEvent();
return TeaModel.build(map, self);
}
public TracedEvent setEventReceivedTime(String eventReceivedTime) {
this.eventReceivedTime = eventReceivedTime;
return this;
}
public String getEventReceivedTime() {
return this.eventReceivedTime;
}
public TracedEvent setEventSource(String eventSource) {
this.eventSource = eventSource;
return this;
}
public String getEventSource() {
return this.eventSource;
}
public TracedEvent setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
public TracedEvent setEventBusName(String eventBusName) {
this.eventBusName = eventBusName;
return this;
}
public String getEventBusName() {
return this.eventBusName;
}
public TracedEvent setEventType(String eventType) {
this.eventType = eventType;
return this;
}
public String getEventType() {
return this.eventType;
}
}