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

import android.graphics.Rect;
import com.seewo.sdk.interfaces.p;
import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdSetTouchRemapForPIP implements SDKParsable {
    public int isEnable;
    public Rect location;
    public p sourceItem;

    private CmdSetTouchRemapForPIP() {
    }

    public String toString() {
        return "CmdChangeSourceForPIP{sourceItem=" + this.sourceItem + ", location=" + this.location + ", isEnable=" + this.isEnable + '}';
    }

    public CmdSetTouchRemapForPIP(p pVar, Rect rect, boolean z) {
        this();
        this.sourceItem = pVar;
        this.location = rect;
        this.isEnable = z ? 1 : 0;
    }
}
