I am writing documentation for my method which has many parameters, but all are just being directly passed into an API call. It will look something like this:
def func(a, b, c, d, e, f, g, h):
api(a, b, c, d, e, f, g, h)
What should I put for my docstrings? The API's documentation is copywritten so I cannot just copy what they put for their parameters.