bodyParam

Declare that a parameter will be transmitted to the API through the body.

It will be serialized as part of a JSON object. The serialization format is currently not customizable. If no fieldname is given, the entire body is serialized into the object.

  1. WebParamAttribute bodyParam(string identifier, string field)
    @safe
    bodyParam
    (
    string identifier
    ,
    string field
    )
  2. WebParamAttribute bodyParam(string identifier)

Meta