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

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

    private SDKSystemData() {
    }

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

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

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

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

    public SDKSystemData(int i2, String str) {
        this();
        this.f2880b = i2;
        this.f2881f = str;
    }
}
