package com.seewo.libmyousdk.model;

import com.google.gson.annotations.SerializedName;

/* JADX INFO: loaded from: classes.dex */
public class CheckInfo {

    @SerializedName("appKey")
    public String appKey;

    @SerializedName("board")
    public String board;

    @SerializedName("deviceMac")
    public String deviceMac;

    @SerializedName("platform")
    public String platform;

    @SerializedName("policyId")
    public String policyId;

    @SerializedName("resourceTag")
    public String resourceTag;

    @SerializedName("tag")
    public String tag;

    @SerializedName("updateType")
    public String updateType;

    @SerializedName("versionCode")
    public String versionCode;

    public String getAppKey() {
        return this.appKey;
    }

    public String getBoard() {
        return this.board;
    }

    public String getDeviceMac() {
        return this.deviceMac;
    }

    public String getPlatform() {
        return this.platform;
    }

    public String getPolicyId() {
        return this.policyId;
    }

    public String getResourceTag() {
        return this.resourceTag;
    }

    public String getTag() {
        return this.tag;
    }

    public String getUpdateType() {
        return this.updateType;
    }

    public String getVersionCode() {
        return this.versionCode;
    }

    public void setAppKey(String str) {
        this.appKey = str;
    }

    public void setBoard(String str) {
        this.board = str;
    }

    public void setDeviceMac(String str) {
        this.deviceMac = str;
    }

    public void setPlatform(String str) {
        this.platform = str;
    }

    public void setPolicyId(String str) {
        this.policyId = str;
    }

    public void setResourceTag(String str) {
        this.resourceTag = str;
    }

    public void setTag(String str) {
        this.tag = str;
    }

    public void setUpdateType(String str) {
        this.updateType = str;
    }

    public void setVersionCode(String str) {
        this.versionCode = str;
    }

    public String toString() {
        return "CheckInfo{appKey='" + this.appKey + "', versionCode='" + this.versionCode + "', platform='" + this.platform + "', deviceMac='" + this.deviceMac + "', policyId='" + this.policyId + "', updateType='" + this.updateType + "', resourceTag='" + this.resourceTag + "', board='" + this.board + "', tag='" + this.tag + "'}";
    }
}
