EVECelery.tasks.ESI.Industry.Models.get_industry_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#

CostIndice

GetIndustrySystemsOkItem

GetIndustrySystemsOk

Headers200_get_industry_systems

Headers for response code 200

Response200_get_industry_systems

A list of cost indicies

class EVECelery.tasks.ESI.Industry.Models.get_industry_systems_200.CostIndice#

Bases: pydantic.BaseModel

activity: Literal[copying, duplicating, invention, manufacturing, none, reaction, researching_material_efficiency, researching_technology, researching_time_efficiency, reverse_engineering]#
cost_index: float#
class EVECelery.tasks.ESI.Industry.Models.get_industry_systems_200.GetIndustrySystemsOkItem#

Bases: pydantic.BaseModel

cost_indices: List[CostIndice]#
solar_system_id: int#
class EVECelery.tasks.ESI.Industry.Models.get_industry_systems_200.GetIndustrySystemsOk#

Bases: pydantic.BaseModel

__root__: List[GetIndustrySystemsOkItem]#
class EVECelery.tasks.ESI.Industry.Models.get_industry_systems_200.Headers200_get_industry_systems#

Bases: EVECelery.tasks.BaseTasks.Models.ModelsBase.ModelBaseEVECelery

Headers for response code 200

Cache_Control: str | None#
ETag: str | None#
Expires: str | None#
Last_Modified: str | None#
class EVECelery.tasks.ESI.Industry.Models.get_industry_systems_200.Response200_get_industry_systems#

Bases: EVECelery.tasks.BaseTasks.Models.ModelsCached.ModelCachedResponse

A list of cost indicies

Response for code 200. This model contains the response body and headers returned from ESI.

Example responses from ESI:

[
  {
    "cost_indices": [
      {
        "activity": "invention",
        "cost_index": 0.0048
      }
    ],
    "solar_system_id": 30011392
  }
]
headers: Headers200_get_industry_systems#
body: GetIndustrySystemsOk#