.. _protocol:

.. currentmodule:: gmusicapi.protocol

Protocol Details
================

The following definitions represent known endpoints relating to Google Music.
They are organized by the client that uses them.

The names of these classes are semantic, and may not match their actual endpoint.

Most of the time, endusers will want to use one of the :ref:`api`.
However, any of the definitions listed here can be called by using the
``_make_call`` member of a Client and providing the parameters needed by
``dynamic_*`` functions.

It's tough to generate the exact schema of every call in a readable fashion,
so this information is left out.
If you need exact specifications, look at `the code
<https://github.com/simon-weber/gmusicapi/tree/develop/gmusicapi/protocol>`__
- or submit a pull request to generate the docs =)

Android Client
--------------

.. automodule:: gmusicapi.protocol.mobileclient
   :members:
   :undoc-members:
   :exclude-members: McCall, build_request, filter_response, validate, filter_text, item_schema, genre_schema, shared_plentry

Music Manager
-------------

.. automodule:: gmusicapi.protocol.musicmanager
   :members:
   :undoc-members:
   :exclude-members: MmCall, build_request, filter_response, validate

Web Client
----------

.. automodule:: gmusicapi.protocol.webclient
   :members:
   :undoc-members:
   :exclude-members: WcCall, build_request, filter_response, validate, expected_response
