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;
    private String d;
    private String e;
    private int f;

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

    private SDKCameraDevice() {
    }

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

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

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

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

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

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

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

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

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

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

    public String toString() {
        return "SDKCameraDevice[mCameraId=" + this.b + ",mName=" + this.d + ", mProductName=" + this.e + ",mVendorId=" + this.f + ",mProductId=" + this.f379g + "]";
    }

    public SDKCameraDevice(int i2, String str, String str2, int i3, int i4) {
        this.b = i2;
        this.d = str;
        this.e = str2;
        this.f = i3;
        this.f379g = i4;
    }
}
