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;
    private String d;

    private ScreenShotResult() {
    }

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

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

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

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

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