package com.seewo.sdk.internal.response.touch;

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

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

    private RespGetCapTouchUpgrade() {
    }

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

    public void setType(SDKCapTouchUpgradeType sDKCapTouchUpgradeType) {
        this.b = sDKCapTouchUpgradeType;
    }

    public RespGetCapTouchUpgrade(SDKCapTouchUpgradeType sDKCapTouchUpgradeType) {
        this();
        this.b = sDKCapTouchUpgradeType;
    }
}
