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 f2736b;

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

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

    private CmdInstallAPK() {
    }

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

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

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

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

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

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

    public CmdInstallAPK(String str, boolean z) {
        this();
        this.f2738g = z;
        this.f2736b = str;
    }

    public CmdInstallAPK(String str, String str2, boolean z) {
        this();
        this.f2738g = z;
        this.f2737f = str2;
        this.f2736b = str;
    }
}
