package com.seewo.sdk.model;

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class SDKCameraDevice implements SDKParsable {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private int f2802b;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private String f2803f;

    /* JADX INFO: renamed from: g, reason: collision with root package name */
    private String f2804g;

    /* JADX INFO: renamed from: h, reason: collision with root package name */
    private int f2805h;

    /* JADX INFO: renamed from: i, reason: collision with root package name */
    private int f2806i;

    private SDKCameraDevice() {
    }

    public int getCameraId() {
        return this.f2802b;
    }

    public String getName() {
        return this.f2803f;
    }

    public int getProductId() {
        return this.f2806i;
    }

    public String getProductName() {
        return this.f2804g;
    }

    public int getVendorId() {
        return this.f2805h;
    }

    public void setCameraId(int i2) {
        this.f2802b = i2;
    }

    public void setName(String str) {
        this.f2803f = str;
    }

    public void setProductId(int i2) {
        this.f2806i = i2;
    }

    public void setProductName(String str) {
        this.f2804g = str;
    }

    public void setVendorId(int i2) {
        this.f2805h = i2;
    }

    public String toString() {
        return "SDKCameraDevice[mCameraId=" + this.f2802b + ",mName=" + this.f2803f + ", mProductName=" + this.f2804g + ",mVendorId=" + this.f2805h + ",mProductId=" + this.f2806i + "]";
    }

    public SDKCameraDevice(int i2, String str, String str2, int i3, int i4) {
        this.f2802b = i2;
        this.f2803f = str;
        this.f2804g = str2;
        this.f2805h = i3;
        this.f2806i = i4;
    }
}
