EVECelery.tasks.ESI.FactionWarfare.Models.get_fw_systems_200#
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#
Headers for response code 200 |
|
All faction warfare solar systems |
- class EVECelery.tasks.ESI.FactionWarfare.Models.get_fw_systems_200.GetFwSystemsOkItem#
Bases:
pydantic.BaseModel- contested: Literal[captured, GetFwSystemsOkItem.contested, uncontested, vulnerable]#
- occupier_faction_id: int#
- owner_faction_id: int#
- solar_system_id: int#
- victory_points: int#
- victory_points_threshold: int#
- class EVECelery.tasks.ESI.FactionWarfare.Models.get_fw_systems_200.GetFwSystemsOk#
Bases:
pydantic.BaseModel- __root__: List[GetFwSystemsOkItem]#
- class EVECelery.tasks.ESI.FactionWarfare.Models.get_fw_systems_200.Headers200_get_fw_systems#
Bases:
EVECelery.tasks.BaseTasks.Models.ModelsBase.ModelBaseEVECeleryHeaders for response code 200
- Cache_Control: str | None#
- ETag: str | None#
- Expires: str | None#
- Last_Modified: str | None#
- class EVECelery.tasks.ESI.FactionWarfare.Models.get_fw_systems_200.Response200_get_fw_systems#
Bases:
EVECelery.tasks.BaseTasks.Models.ModelsCached.ModelCachedResponseAll faction warfare solar systems
Response for code 200. This model contains the response body and headers returned from ESI.
Example responses from ESI:
[ { "contested": "uncontested", "occupier_faction_id": 500001, "owner_faction_id": 500001, "solar_system_id": 30002096, "victory_points": 60, "victory_points_threshold": 3000 } ]
- headers: Headers200_get_fw_systems#
- body: GetFwSystemsOk#