All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.iot.v20180123.models.DebugLogEntry Maven / Gradle / Ivy

/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.iot.v20180123.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class DebugLogEntry extends AbstractModel{

    /**
    * 日志id
    */
    @SerializedName("Id")
    @Expose
    private String Id;

    /**
    * 行为(事件)
    */
    @SerializedName("Event")
    @Expose
    private String Event;

    /**
    * shadow/action/mqtt, 分别表示:影子/规则引擎/上下线日志
    */
    @SerializedName("LogType")
    @Expose
    private String LogType;

    /**
    * 时间戳
    */
    @SerializedName("Timestamp")
    @Expose
    private Long Timestamp;

    /**
    * success/fail
    */
    @SerializedName("Result")
    @Expose
    private String Result;

    /**
    * 日志详细内容
    */
    @SerializedName("Data")
    @Expose
    private String Data;

    /**
    * 数据来源topic
    */
    @SerializedName("Topic")
    @Expose
    private String Topic;

    /**
    * 设备名称
    */
    @SerializedName("DeviceName")
    @Expose
    private String DeviceName;

    /**
     * Get 日志id 
     * @return Id 日志id
     */
    public String getId() {
        return this.Id;
    }

    /**
     * Set 日志id
     * @param Id 日志id
     */
    public void setId(String Id) {
        this.Id = Id;
    }

    /**
     * Get 行为(事件) 
     * @return Event 行为(事件)
     */
    public String getEvent() {
        return this.Event;
    }

    /**
     * Set 行为(事件)
     * @param Event 行为(事件)
     */
    public void setEvent(String Event) {
        this.Event = Event;
    }

    /**
     * Get shadow/action/mqtt, 分别表示:影子/规则引擎/上下线日志 
     * @return LogType shadow/action/mqtt, 分别表示:影子/规则引擎/上下线日志
     */
    public String getLogType() {
        return this.LogType;
    }

    /**
     * Set shadow/action/mqtt, 分别表示:影子/规则引擎/上下线日志
     * @param LogType shadow/action/mqtt, 分别表示:影子/规则引擎/上下线日志
     */
    public void setLogType(String LogType) {
        this.LogType = LogType;
    }

    /**
     * Get 时间戳 
     * @return Timestamp 时间戳
     */
    public Long getTimestamp() {
        return this.Timestamp;
    }

    /**
     * Set 时间戳
     * @param Timestamp 时间戳
     */
    public void setTimestamp(Long Timestamp) {
        this.Timestamp = Timestamp;
    }

    /**
     * Get success/fail 
     * @return Result success/fail
     */
    public String getResult() {
        return this.Result;
    }

    /**
     * Set success/fail
     * @param Result success/fail
     */
    public void setResult(String Result) {
        this.Result = Result;
    }

    /**
     * Get 日志详细内容 
     * @return Data 日志详细内容
     */
    public String getData() {
        return this.Data;
    }

    /**
     * Set 日志详细内容
     * @param Data 日志详细内容
     */
    public void setData(String Data) {
        this.Data = Data;
    }

    /**
     * Get 数据来源topic 
     * @return Topic 数据来源topic
     */
    public String getTopic() {
        return this.Topic;
    }

    /**
     * Set 数据来源topic
     * @param Topic 数据来源topic
     */
    public void setTopic(String Topic) {
        this.Topic = Topic;
    }

    /**
     * Get 设备名称 
     * @return DeviceName 设备名称
     */
    public String getDeviceName() {
        return this.DeviceName;
    }

    /**
     * Set 设备名称
     * @param DeviceName 设备名称
     */
    public void setDeviceName(String DeviceName) {
        this.DeviceName = DeviceName;
    }

    public DebugLogEntry() {
    }

    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public DebugLogEntry(DebugLogEntry source) {
        if (source.Id != null) {
            this.Id = new String(source.Id);
        }
        if (source.Event != null) {
            this.Event = new String(source.Event);
        }
        if (source.LogType != null) {
            this.LogType = new String(source.LogType);
        }
        if (source.Timestamp != null) {
            this.Timestamp = new Long(source.Timestamp);
        }
        if (source.Result != null) {
            this.Result = new String(source.Result);
        }
        if (source.Data != null) {
            this.Data = new String(source.Data);
        }
        if (source.Topic != null) {
            this.Topic = new String(source.Topic);
        }
        if (source.DeviceName != null) {
            this.DeviceName = new String(source.DeviceName);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "Id", this.Id);
        this.setParamSimple(map, prefix + "Event", this.Event);
        this.setParamSimple(map, prefix + "LogType", this.LogType);
        this.setParamSimple(map, prefix + "Timestamp", this.Timestamp);
        this.setParamSimple(map, prefix + "Result", this.Result);
        this.setParamSimple(map, prefix + "Data", this.Data);
        this.setParamSimple(map, prefix + "Topic", this.Topic);
        this.setParamSimple(map, prefix + "DeviceName", this.DeviceName);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy