package com.seewo.remote.lan.customer.smart.entity;

import h.i;
import h.x.d.k;

/* JADX INFO: compiled from: UsbMsg.kt */
/* JADX INFO: loaded from: classes.dex */
@i
public final class UsbMsg {
    private String Label;
    private String Location;
    private String Port;
    private String Protocol;

    public UsbMsg(String str, String str2, String str3, String str4) {
        k.d(str, "Location");
        k.d(str2, "Port");
        k.d(str3, "Label");
        k.d(str4, "Protocol");
        this.Location = str;
        this.Port = str2;
        this.Label = str3;
        this.Protocol = str4;
    }

    public static /* synthetic */ UsbMsg copy$default(UsbMsg usbMsg, String str, String str2, String str3, String str4, int i2, Object obj) {
        if ((i2 & 1) != 0) {
            str = usbMsg.Location;
        }
        if ((i2 & 2) != 0) {
            str2 = usbMsg.Port;
        }
        if ((i2 & 4) != 0) {
            str3 = usbMsg.Label;
        }
        if ((i2 & 8) != 0) {
            str4 = usbMsg.Protocol;
        }
        return usbMsg.copy(str, str2, str3, str4);
    }

    public final String component1() {
        return this.Location;
    }

    public final String component2() {
        return this.Port;
    }

    public final String component3() {
        return this.Label;
    }

    public final String component4() {
        return this.Protocol;
    }

    public final UsbMsg copy(String str, String str2, String str3, String str4) {
        k.d(str, "Location");
        k.d(str2, "Port");
        k.d(str3, "Label");
        k.d(str4, "Protocol");
        return new UsbMsg(str, str2, str3, str4);
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof UsbMsg)) {
            return false;
        }
        UsbMsg usbMsg = (UsbMsg) obj;
        return k.a(this.Location, usbMsg.Location) && k.a(this.Port, usbMsg.Port) && k.a(this.Label, usbMsg.Label) && k.a(this.Protocol, usbMsg.Protocol);
    }

    public final String getLabel() {
        return this.Label;
    }

    public final String getLocation() {
        return this.Location;
    }

    public final String getPort() {
        return this.Port;
    }

    public final String getProtocol() {
        return this.Protocol;
    }

    public int hashCode() {
        return (((((this.Location.hashCode() * 31) + this.Port.hashCode()) * 31) + this.Label.hashCode()) * 31) + this.Protocol.hashCode();
    }

    public final void setLabel(String str) {
        k.d(str, "<set-?>");
        this.Label = str;
    }

    public final void setLocation(String str) {
        k.d(str, "<set-?>");
        this.Location = str;
    }

    public final void setPort(String str) {
        k.d(str, "<set-?>");
        this.Port = str;
    }

    public final void setProtocol(String str) {
        k.d(str, "<set-?>");
        this.Protocol = str;
    }

    public String toString() {
        return "UsbMsg(Location=" + this.Location + ", Port=" + this.Port + ", Label=" + this.Label + ", Protocol=" + this.Protocol + ')';
    }
}
