for example, spring boot has annotations for certain methods (post, get, request body, etc..)
What attributes should be supplied for the arguments in the method, for example:
[HttpPost]
public async Task<List<ShowModelAttributes>> showModels(#here string str, #and here
string token)
{
return await serviceFromGetStatus.sendRestArrayOrderId(str, token);
}
that is, when there is more than one argument.
also please, is there any detailed documentation on these attributes