Source code for hvpy.api_groups.movies.re_queue_movie

from hvpy.io import HvpyParameters, OutputType


[docs]class reQueueMovieInputParameters(HvpyParameters): """ Handles the input parameters of the ``reQueueMovie`` API. .. {Shared} Attributes ---------- id Unique movie identifier, returned as a response by the ``queueMovie`` endpoint request. force Boolean to force the re-queueing of the movie. Defaults to `False`, optional. References ---------- * `<https://api.helioviewer.org/docs/v2/api/api_groups/movies.html#id2>`__ .. {Shared} """ id: str force: bool = False def get_output_type(self) -> OutputType: """ Returns the output type of the API call. """ return OutputType.JSON