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

PostUniverseNamesOkItem

PostUniverseNamesOk

Headers200_post_universe_names

Headers for response code 200

Response200_post_universe_names

List of id/name associations for a set of IDs. All IDs must resolve to a name, or nothing will be returned

class EVECelery.tasks.ESI.Universe.Models.post_universe_names_200.PostUniverseNamesOkItem#

Bases: pydantic.BaseModel

category: Literal[alliance, character, constellation, corporation, inventory_type, region, solar_system, station, faction]#
id: int#
name: str#
class EVECelery.tasks.ESI.Universe.Models.post_universe_names_200.PostUniverseNamesOk#

Bases: pydantic.BaseModel

__root__: List[PostUniverseNamesOkItem]#
class EVECelery.tasks.ESI.Universe.Models.post_universe_names_200.Headers200_post_universe_names#

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

Headers for response code 200

class EVECelery.tasks.ESI.Universe.Models.post_universe_names_200.Response200_post_universe_names#

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

List of id/name associations for a set of IDs. All IDs must resolve to a name, or nothing will be returned

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

Example responses from ESI:

[
  {
    "category": "character",
    "id": 95465499,
    "name": "CCP Bartender"
  },
  {
    "category": "solar_system",
    "id": 30000142,
    "name": "Jita"
  }
]
headers: Headers200_post_universe_names#
body: PostUniverseNamesOk#