package com.seewo.sdk.model;

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

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

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

    private SDKSystemData() {
    }

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

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

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

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

    public SDKSystemData(int i2, String str) {
        this();
        this.b = i2;
        this.f419e = str;
    }
}
