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