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;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    private String f343e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private boolean f344f;

    private CmdInstallAPK() {
    }

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

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

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

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

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

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

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

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