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 {

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

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

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

    private CmdInstallAPK() {
    }

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

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

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

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

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

    public void setSilent(boolean z2) {
        this.f3443r = z2;
    }

    public CmdInstallAPK(String str, boolean z2) {
        this();
        this.f3443r = z2;
        this.f3441b = str;
    }

    public CmdInstallAPK(String str, String str2, boolean z2) {
        this();
        this.f3443r = z2;
        this.f3442g = str2;
        this.f3441b = str;
    }
}
