Parameter Data
data class ParameterData(val name: String?, val typeName: String, val parameter: KParameter, val nameIsNull: Boolean, val hasQuery: Boolean, val hasBody: Boolean, val hasPathParam: Boolean)
This class is responsible for containing the data of a parameter of a method.
Parameters
name
: The name of the parameter.
type Name
: The type name of the parameter.
parameter
: The parameter.
name Is Null
: Whether the parameter is null.
has Query
: Whether the parameter is a query parameter.
has Body
: Whether the parameter is a body parameter.
has Path Param
: Whether the parameter is a path parameter.