github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_incursions_200_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 GetIncursions200Ok. */
    26  //easyjson:json
    27  type GetIncursions200OkList []GetIncursions200Ok
    28  
    29  /* 200 ok object */
    30  //easyjson:json
    31  type GetIncursions200Ok struct {
    32  	ConstellationId      int32   `json:"constellation_id,omitempty"`        /* The constellation id in which this incursion takes place */
    33  	FactionId            int32   `json:"faction_id,omitempty"`              /* The attacking faction's id */
    34  	HasBoss              bool    `json:"has_boss,omitempty"`                /* Whether the final encounter has boss or not */
    35  	InfestedSolarSystems []int32 `json:"infested_solar_systems,omitempty"`  /* A list of infested solar system ids that are a part of this incursion */
    36  	Influence            float32 `json:"influence,omitempty"`               /* Influence of this incursion as a float from 0 to 1 */
    37  	StagingSolarSystemId int32   `json:"staging_solar_system_id,omitempty"` /* Staging solar system for this incursion */
    38  	State                string  `json:"state,omitempty"`                   /* The state of this incursion */
    39  	Type_                string  `json:"type,omitempty"`                    /* The type of this incursion */
    40  }