> For the complete documentation index, see [llms.txt](https://pyot.iann838.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pyot.iann838.com/pipeline/token.md).

# Token

### *class* `PipelineToken`

Token class is used among all the stores in the pipeline. Typically generated from `token()` on `PyotCore` objects.

Definitions:

* `__init__`
  * `model`: `str`

    > Name of the pipeline.
  * `server`: `str`

    > Name of the server (region/platform/locale).
  * `method`: `str`

    > Name of the method endpoint.
  * `params`: `Dict[str, Any]`

    > Dict containing the params.
  * `queries`: `Dict[str, Any]`

    > Dict containing the queries params.
* `__hash__` -> `str`

  > Returns the hash of the token.

Attributes:

* `value`: `str`
* `hashval`: `str`
* `model`: `str`
* `server`: `str`
* `method`: `str`
* `params`: `Dict[str, str]`
* `queries`: `Dict[str, Any]`

Methods:

* *staticmethod* `parse_params` -> `str`
  * `dic`: `Dict`
* *staticmethod* `parse_queries` -> `str`
  * `dic`: `Dict`
* *classmethod* `load` -> `PipelineToken`
  * `dic`: `Dict`
* *method* `dict` -> `Dict`
