package com.seewo.sdk.model;

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

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

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

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

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

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

    private SDKCameraDevice() {
    }

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

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

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

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

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

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

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

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

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

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

    public String toString() {
        return "SDKCameraDevice[mCameraId=" + this.b + ",mName=" + this.f359e + ", mProductName=" + this.f360f + ",mVendorId=" + this.f361g + ",mProductId=" + this.f362h + "]";
    }

    public SDKCameraDevice(int i2, String str, String str2, int i3, int i4) {
        this.b = i2;
        this.f359e = str;
        this.f360f = str2;
        this.f361g = i3;
        this.f362h = i4;
    }
}
