:py:mod:`EVECelery.tasks.ESI.Incursions.Models.get_incursions_200` ================================================================== .. py:module:: EVECelery.tasks.ESI.Incursions.Models.get_incursions_200 .. autoapi-nested-parse:: A model definition module returned by an ESI task. This module was automatically generated from Jinja templates with the codegen tool included in the root of this repo. You should not directly modify this module but instead modify the template 'codegen/Templates/ESI_Models.py'. Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: EVECelery.tasks.ESI.Incursions.Models.get_incursions_200.GetIncursionsOkItem EVECelery.tasks.ESI.Incursions.Models.get_incursions_200.GetIncursionsOk EVECelery.tasks.ESI.Incursions.Models.get_incursions_200.Headers200_get_incursions EVECelery.tasks.ESI.Incursions.Models.get_incursions_200.Response200_get_incursions .. py:class:: GetIncursionsOkItem Bases: :py:obj:`pydantic.BaseModel` .. py:attribute:: constellation_id :type: int .. py:attribute:: faction_id :type: int .. py:attribute:: has_boss :type: bool .. py:attribute:: infested_solar_systems :type: List[int] .. py:attribute:: influence :type: float .. py:attribute:: staging_solar_system_id :type: int .. py:attribute:: state :type: Literal[withdrawing, mobilizing, established] .. py:attribute:: type :type: str .. py:class:: GetIncursionsOk Bases: :py:obj:`pydantic.BaseModel` .. py:attribute:: __root__ :type: List[GetIncursionsOkItem] .. py:class:: Headers200_get_incursions Bases: :py:obj:`EVECelery.tasks.BaseTasks.Models.ModelsBase.ModelBaseEVECelery` Headers for response code 200 .. py:attribute:: Cache_Control :type: str | None .. py:attribute:: ETag :type: str | None .. py:attribute:: Expires :type: str | None .. py:attribute:: Last_Modified :type: str | None .. py:class:: Response200_get_incursions Bases: :py:obj:`EVECelery.tasks.BaseTasks.Models.ModelsCached.ModelCachedResponse` A list of incursions Response for code 200. This model contains the response body and headers returned from ESI. Example responses from ESI: .. code-block:: json [ { "constellation_id": 20000607, "faction_id": 500019, "has_boss": true, "infested_solar_systems": [ 30004148, 30004149, 30004150, 30004151, 30004152, 30004153, 30004154 ], "influence": 0.9, "staging_solar_system_id": 30004154, "state": "mobilizing", "type": "Incursion" } ] .. py:attribute:: headers :type: Headers200_get_incursions .. py:attribute:: body :type: GetIncursionsOk