package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import xyz.stream.download.config.InnerConstant;

/* JADX INFO: loaded from: classes3.dex */
public class LeagueEntity {

    @SerializedName("displayName")
    private String displayName;

    @SerializedName("icon")
    private Integer icon;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    @SerializedName(InnerConstant.Db.f36069id)
    private Integer f35849id;

    @SerializedName("logo")
    private String logo;

    @SerializedName("name")
    private String name;

    @SerializedName("sportType")
    private String sportType;

    public LeagueEntity(Integer num, String str, String str2, int i10, String str3, String str4) {
        this.f35849id = num;
        this.name = str;
        this.logo = str2;
        this.icon = Integer.valueOf(i10);
        this.sportType = str3;
        this.displayName = str4;
    }

    public String getDisplayName() {
        return this.displayName;
    }

    public Integer getIcon() {
        return this.icon;
    }

    public Integer getId() {
        return this.f35849id;
    }

    public String getLogo() {
        return this.logo;
    }

    public String getName() {
        return this.name;
    }

    public String getSportType() {
        return this.sportType;
    }

    public void setDisplayName(String str) {
        this.displayName = str;
    }

    public void setIcon(Integer num) {
        this.icon = num;
    }

    public void setId(Integer num) {
        this.f35849id = num;
    }

    public void setLogo(String str) {
        this.logo = str;
    }

    public void setName(String str) {
        this.name = str;
    }

    public void setSportType(String str) {
        this.sportType = str;
    }
}
