package com.seewo.sdk.model;

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

/* JADX INFO: loaded from: classes.dex */
public class SDKHotspotConfig implements SDKParsable {
    private String b;
    private String d;
    private SDKHotspotBand e;
    private Integer f;

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

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

    public SDKHotspotBand getBand() {
        return this.e;
    }

    public Integer getChannel() {
        return this.f;
    }

    public String getCountryCode() {
        return this.f389h;
    }

    public String getPassword() {
        return this.d;
    }

    public String getSsid() {
        return this.b;
    }

    public boolean isHiddenSSID() {
        return this.f388g;
    }

    public void setBand(SDKHotspotBand sDKHotspotBand) {
        this.e = sDKHotspotBand;
    }

    public void setChannel(Integer num) {
        this.f = num;
    }

    public void setCountryCode(String str) {
        this.f389h = str;
    }

    public void setHiddenSSID(boolean z) {
        this.f388g = z;
    }

    public void setPassword(String str) {
        this.d = str;
    }

    public void setSsid(String str) {
        this.b = str;
    }

    public String toString() {
        return "SDKHotspotConfig{ssid='" + this.b + "', password='" + this.d + "', band='" + this.e + "', hiddenSSID='" + this.f388g + "', countryCode='" + this.f389h + "', channel='" + this.f + "'}";
    }
}
