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

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdInstallAPK implements SDKParsable {
    private String b;
    private String d;
    private boolean e;

    private CmdInstallAPK() {
    }

    public String getAction() {
        return this.d;
    }

    public String getPath() {
        return this.b;
    }

    public boolean isSilent() {
        return this.e;
    }

    public void setAction(String str) {
        this.d = str;
    }

    public void setPath(String str) {
        this.b = str;
    }

    public void setSilent(boolean z) {
        this.e = z;
    }

    public CmdInstallAPK(String str, boolean z) {
        this();
        this.e = z;
        this.b = str;
    }

    public CmdInstallAPK(String str, String str2, boolean z) {
        this();
        this.e = z;
        this.d = str2;
        this.b = str;
    }
}
