package com.dji.sdk.mqtt.events; import com.dji.sdk.mqtt.CommonTopicResponse; /** * Unified Topic request format * @author sean.zhou * @date 2021/11/15 * @version 0.1 */ public class TopicEventsResponse extends CommonTopicResponse { private String method; @Override public String toString() { return "TopicEventsResponse{" + "tid='" + tid + '\'' + ", bid='" + bid + '\'' + ", method='" + method + '\'' + ", data=" + data + ", timestamp=" + timestamp + '}'; } public TopicEventsResponse() { } public String getTid() { return tid; } public TopicEventsResponse setTid(String tid) { this.tid = tid; return this; } public String getBid() { return bid; } public TopicEventsResponse setBid(String bid) { this.bid = bid; return this; } public String getMethod() { return method; } public TopicEventsResponse setMethod(String method) { this.method = method; return this; } public T getData() { return data; } public TopicEventsResponse setData(T data) { this.data = data; return this; } public Long getTimestamp() { return timestamp; } public TopicEventsResponse setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } }