Interface ClubSearchFilter

interface ClubSearchFilter {
    category:
        | "other"
        | "anime"
        | "manga"
        | "music"
        | "characters"
        | "companies"
        | "conventions"
        | "games"
        | "japan"
        | "schools"
        | "actors_and_artists"
        | "cities_and_neighborhoods";
    orderBy:
        | "title"
        | "mal_id"
        | "members_count"
        | "pictures_count"
        | "created";
    sort: "desc" | "asc";
    type: "public" | "private" | "secret";
}

Properties

category:
    | "other"
    | "anime"
    | "manga"
    | "music"
    | "characters"
    | "companies"
    | "conventions"
    | "games"
    | "japan"
    | "schools"
    | "actors_and_artists"
    | "cities_and_neighborhoods"
orderBy:
    | "title"
    | "mal_id"
    | "members_count"
    | "pictures_count"
    | "created"
sort: "desc" | "asc"
type: "public" | "private" | "secret"