github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_fw_leaderboards_characters_kills.go (about)

     1  /*
     2   * EVE Swagger Interface
     3   *
     4   * An OpenAPI for EVE Online
     5   *
     6   * OpenAPI spec version: 1.21
     7   *
     8   * Generated by: https://github.com/swagger-api/swagger-codegen.git
     9   *
    10   * Licensed under the Apache License, Version 2.0 (the "License");
    11   * you may not use this file except in compliance with the License.
    12   * You may obtain a copy of the License at
    13   *
    14   *      http://www.apache.org/licenses/LICENSE-2.0
    15   *
    16   * Unless required by applicable law or agreed to in writing, software
    17   * distributed under the License is distributed on an "AS IS" BASIS,
    18   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    19   * See the License for the specific language governing permissions and
    20   * limitations under the License.
    21   */
    22  
    23  package esi
    24  
    25  /* A list of GetFwLeaderboardsCharactersKills. */
    26  //easyjson:json
    27  type GetFwLeaderboardsCharactersKillsList []GetFwLeaderboardsCharactersKills
    28  
    29  /* Top 100 rankings of pilots by number of kills from yesterday, last week and in total */
    30  //easyjson:json
    31  type GetFwLeaderboardsCharactersKills struct {
    32  	ActiveTotal []GetFwLeaderboardsCharactersActiveTotalActiveTotal `json:"active_total,omitempty"` /* Top 100 ranking of pilots active in faction warfare by total kills. A pilot is considered \"active\" if they have participated in faction warfare in the past 14 days */
    33  	LastWeek    []GetFwLeaderboardsCharactersLastWeekLastWeek       `json:"last_week,omitempty"`    /* Top 100 ranking of pilots by kills in the past week */
    34  	Yesterday   []GetFwLeaderboardsCharactersYesterdayYesterday     `json:"yesterday,omitempty"`    /* Top 100 ranking of pilots by kills in the past day */
    35  }