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

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

/* JADX INFO: loaded from: classes.dex */
public class ScreenShotResult implements SDKParsable {

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

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

    private ScreenShotResult() {
    }

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

    public boolean isResult() {
        return this.f2783b;
    }

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

    public void setResult(boolean z) {
        this.f2783b = z;
    }

    public ScreenShotResult(boolean z, String str) {
        this.f2783b = z;
        this.f2784f = str;
    }
}
