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

import android.graphics.Bitmap;
import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdScreenShot implements SDKParsable {
    private Bitmap.CompressFormat b;

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

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

    private CmdScreenShot() {
    }

    public Bitmap.CompressFormat getCompressFormat() {
        return this.b;
    }

    public String getSavePath() {
        return this.f336f;
    }

    public boolean isWillGenerateDirector() {
        return this.f335e;
    }

    public void setCompressFormat(Bitmap.CompressFormat compressFormat) {
        this.b = compressFormat;
    }

    public void setSavePath(String str) {
        this.f336f = str;
    }

    public void setWillGenerateDirector(boolean z) {
        this.f335e = z;
    }

    public CmdScreenShot(Bitmap.CompressFormat compressFormat, boolean z, String str) {
        this.b = compressFormat;
        this.f335e = z;
        this.f336f = str;
    }
}
