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 {
    private boolean b;

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

    private ScreenShotResult() {
    }

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

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

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

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

    public ScreenShotResult(boolean z, String str) {
        this.b = z;
        this.f356e = str;
    }
}
