Source code for worldline.connect.sdk.communication.param_request

from abc import ABC, abstractmethod
from typing import List

from .request_param import RequestParam


[docs] class ParamRequest(ABC): """ Represents a set of request parameters. """
[docs] @abstractmethod def to_request_parameters(self) -> List[RequestParam]: """ :return: list[:class:`worldline.connect.sdk.communication.RequestParam`] representing the HTTP request parameters """ raise NotImplementedError