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