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;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    public String toString() {
        return "SDKHotspotConfig{ssid='" + this.b + "', password='" + this.f373e + "', band='" + this.f374f + "', hiddenSSID='" + this.f376h + "', countryCode='" + this.f377i + "', channel='" + this.f375g + "'}";
    }
}
