package com.benq.platform.utils;

import androidx.annotation.Keep;
import kotlin.jvm.internal.l;

/* JADX INFO: loaded from: classes.dex */
@Keep
public final class CameraDevice {
    private final int mCameraId;
    private final String mName;
    private final int mProductId;
    private final String mProductName;
    private final int mVendorId;

    public CameraDevice(int i2, String mName, String mProductName, int i3, int i4) {
        l.e(mName, "mName");
        l.e(mProductName, "mProductName");
        this.mCameraId = i2;
        this.mName = mName;
        this.mProductName = mProductName;
        this.mVendorId = i3;
        this.mProductId = i4;
    }

    public static /* synthetic */ CameraDevice copy$default(CameraDevice cameraDevice, int i2, String str, String str2, int i3, int i4, int i5, Object obj) {
        if ((i5 & 1) != 0) {
            i2 = cameraDevice.mCameraId;
        }
        if ((i5 & 2) != 0) {
            str = cameraDevice.mName;
        }
        String str3 = str;
        if ((i5 & 4) != 0) {
            str2 = cameraDevice.mProductName;
        }
        String str4 = str2;
        if ((i5 & 8) != 0) {
            i3 = cameraDevice.mVendorId;
        }
        int i6 = i3;
        if ((i5 & 16) != 0) {
            i4 = cameraDevice.mProductId;
        }
        return cameraDevice.copy(i2, str3, str4, i6, i4);
    }

    public final int component1() {
        return this.mCameraId;
    }

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

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

    public final int component4() {
        return this.mVendorId;
    }

    public final int component5() {
        return this.mProductId;
    }

    public final CameraDevice copy(int i2, String mName, String mProductName, int i3, int i4) {
        l.e(mName, "mName");
        l.e(mProductName, "mProductName");
        return new CameraDevice(i2, mName, mProductName, i3, i4);
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof CameraDevice)) {
            return false;
        }
        CameraDevice cameraDevice = (CameraDevice) obj;
        return this.mCameraId == cameraDevice.mCameraId && l.a(this.mName, cameraDevice.mName) && l.a(this.mProductName, cameraDevice.mProductName) && this.mVendorId == cameraDevice.mVendorId && this.mProductId == cameraDevice.mProductId;
    }

    public final int getMCameraId() {
        return this.mCameraId;
    }

    public final String getMName() {
        return this.mName;
    }

    public final int getMProductId() {
        return this.mProductId;
    }

    public final String getMProductName() {
        return this.mProductName;
    }

    public final int getMVendorId() {
        return this.mVendorId;
    }

    public int hashCode() {
        return (((((((Integer.hashCode(this.mCameraId) * 31) + this.mName.hashCode()) * 31) + this.mProductName.hashCode()) * 31) + Integer.hashCode(this.mVendorId)) * 31) + Integer.hashCode(this.mProductId);
    }

    public String toString() {
        return "CameraDevice(mCameraId=" + this.mCameraId + ", mName=" + this.mName + ", mProductName=" + this.mProductName + ", mVendorId=" + this.mVendorId + ", mProductId=" + this.mProductId + ")";
    }
}
