github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_universe_stations_station_id_ok.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 GetUniverseStationsStationIdOk. */
    26  //easyjson:json
    27  type GetUniverseStationsStationIdOkList []GetUniverseStationsStationIdOk
    28  
    29  /* 200 ok object */
    30  //easyjson:json
    31  type GetUniverseStationsStationIdOk struct {
    32  	MaxDockableShipVolume    float32                              `json:"max_dockable_ship_volume,omitempty"` /* max_dockable_ship_volume number */
    33  	Name                     string                               `json:"name,omitempty"`                     /* name string */
    34  	OfficeRentalCost         float32                              `json:"office_rental_cost,omitempty"`       /* office_rental_cost number */
    35  	Owner                    int32                                `json:"owner,omitempty"`                    /* ID of the corporation that controls this station */
    36  	Position                 GetUniverseStationsStationIdPosition `json:"position,omitempty"`
    37  	RaceId                   int32                                `json:"race_id,omitempty"`                    /* race_id integer */
    38  	ReprocessingEfficiency   float32                              `json:"reprocessing_efficiency,omitempty"`    /* reprocessing_efficiency number */
    39  	ReprocessingStationsTake float32                              `json:"reprocessing_stations_take,omitempty"` /* reprocessing_stations_take number */
    40  	Services                 []string                             `json:"services,omitempty"`                   /* services array */
    41  	StationId                int32                                `json:"station_id,omitempty"`                 /* station_id integer */
    42  	SystemId                 int32                                `json:"system_id,omitempty"`                  /* The solar system this station is in */
    43  	TypeId                   int32                                `json:"type_id,omitempty"`                    /* type_id integer */
    44  }