package com.seewo.sdk.model;

/* JADX INFO: loaded from: classes.dex */
public class SDKPIPTouchRemap {
    public Type type;
    public int xShift;
    public int xZoom;
    public int yShift;
    public int yZoom;

    public enum Type {
        OFF,
        PC_AND_OUT,
        ANDROID,
        ALL
    }

    public SDKPIPTouchRemap(Type type, int i2, int i3, int i4, int i5) {
        this.type = type;
        this.xShift = i2;
        this.yShift = i3;
        this.xZoom = i4;
        this.yZoom = i5;
    }

    public String toString() {
        return "SDKPIPTouchRemap{type='" + this.type.name() + "', xShift=" + this.xShift + ", yShift='" + this.yShift + "', xZoom='" + this.xZoom + "', yZoom='" + this.yZoom + "'}";
    }
}
