package com.seewo.sdk.model;

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

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

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

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

    private SDKSystemData() {
    }

    public int getType() {
        return this.f3631b;
    }

    public String getValue() {
        return this.f3632g;
    }

    public void setType(int i2) {
        this.f3631b = i2;
    }

    public void setValue(String str) {
        this.f3632g = str;
    }

    public SDKSystemData(int i2, String str) {
        this();
        this.f3631b = i2;
        this.f3632g = str;
    }
}
