EVECelery.tasks.ESI.Universe.Models.get_universe_ancestries_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#

GetUniverseAncestriesOkItem

GetUniverseAncestriesOk

Headers200_get_universe_ancestries

Headers for response code 200

Response200_get_universe_ancestries

A list of ancestries

class EVECelery.tasks.ESI.Universe.Models.get_universe_ancestries_200.GetUniverseAncestriesOkItem#

Bases: pydantic.BaseModel

bloodline_id: int#
description: str#
icon_id: int | None#
id: int#
name: str#
short_description: str | None#
class EVECelery.tasks.ESI.Universe.Models.get_universe_ancestries_200.GetUniverseAncestriesOk#

Bases: pydantic.BaseModel

__root__: List[GetUniverseAncestriesOkItem]#
class EVECelery.tasks.ESI.Universe.Models.get_universe_ancestries_200.Headers200_get_universe_ancestries#

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

Headers for response code 200

Cache_Control: str | None#
Content_Language: str | None#
ETag: str | None#
Expires: str | None#
Last_Modified: str | None#
class EVECelery.tasks.ESI.Universe.Models.get_universe_ancestries_200.Response200_get_universe_ancestries#

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

A list of ancestries

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

Example responses from ESI:

[
  {
    "bloodline_id": 1,
    "description": "Acutely aware of the small population...",
    "id": 12,
    "name": "Tube Child",
    "short_description": "Manufactured citizens of the State."
  }
]
headers: Headers200_get_universe_ancestries#
body: GetUniverseAncestriesOk#