package com.dji.sdk.mqtt.events; import com.dji.sdk.mqtt.CommonTopicRequest; /** * @author sean * @version 1.7 * @date 2023/5/24 */ public class TopicEventsRequest extends CommonTopicRequest { private String method; private String gateway; private String from; private boolean needReply; public TopicEventsRequest() { } @Override public String toString() { return "TopicRequestsRequest{" + "method='" + method + '\'' + ", gateway='" + gateway + '\'' + ", from='" + from + '\'' + ", needReply=" + needReply + ", tid='" + tid + '\'' + ", bid='" + bid + '\'' + ", timestamp=" + timestamp + ", data=" + data + '}'; } public String getTid() { return tid; } public TopicEventsRequest setTid(String tid) { this.tid = tid; return this; } public String getBid() { return bid; } public TopicEventsRequest setBid(String bid) { this.bid = bid; return this; } public Long getTimestamp() { return timestamp; } public TopicEventsRequest setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public T getData() { return data; } public TopicEventsRequest setData(T data) { this.data = data; return this; } public String getGateway() { return gateway; } public TopicEventsRequest setGateway(String gateway) { this.gateway = gateway; return this; } public String getFrom() { return from; } public TopicEventsRequest setFrom(String from) { this.from = from; return this; } public boolean isNeedReply() { return needReply; } public TopicEventsRequest setNeedReply(boolean needReply) { this.needReply = needReply; return this; } public String getMethod() { return method; } public TopicEventsRequest setMethod(String method) { this.method = method; return this; } }