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 f3512b;

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

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

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

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

    public SDKCameraDevice(int i2, String str, String str2, int i3, int i4) {
        this.f3512b = i2;
        this.f3513g = str;
        this.f3514r = str2;
        this.f3515x = i3;
        this.f3516y = i4;
    }

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

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

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

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

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

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

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

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

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

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

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