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 mCameraId;
    private String mName;
    private int mProductId;
    private String mProductName;
    private int mVendorId;

    private SDKCameraDevice() {
    }

    public SDKCameraDevice(int i, String str, String str2, int i2, int i3) {
        this.mCameraId = i;
        this.mName = str;
        this.mProductName = str2;
        this.mVendorId = i2;
        this.mProductId = i3;
    }

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

    public void setCameraId(int i) {
        this.mCameraId = i;
    }

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

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

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

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

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

    public void setVendorId(int i) {
        this.mVendorId = i;
    }

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

    public void setProductId(int i) {
        this.mProductId = i;
    }

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