package com.seewo.sdk.internal.command.common;

import com.alibaba.fastjson.JSON;
import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdPostEvent implements SDKParsable {
    private String mEventJson;
    private Class<?> mEventType;

    private CmdPostEvent() {
    }

    public CmdPostEvent(Object obj) {
        this();
        this.mEventJson = JSON.toJSONString(obj);
        this.mEventType = obj.getClass();
    }

    public String getEventJson() {
        return this.mEventJson;
    }

    public void setEventJson(String str) {
        this.mEventJson = str;
    }

    public Class<?> getEventType() {
        return this.mEventType;
    }

    public void setEventType(Class<?> cls) {
        this.mEventType = cls;
    }
}
