Source code for fpdc_client.endpoints

"""This module contains the REST API endpoint-specific classes.
"""

from .base import APIObject


[docs]class Release(APIObject): """API endpoint for releases.""" api_endpoint = "release" api_id = "release_id"