ParameterProperties

data class ParameterProperties(val isOptional: Boolean, val isLikelyNamed: Boolean, val isLikelyBody: Boolean)

Additional properties of a parameter that can be documented.

Constructors

Link copied to clipboard
constructor(isOptional: Boolean, isLikelyNamed: Boolean, isLikelyBody: Boolean)

Properties

Link copied to clipboard

whether the parameter is likely passed as a body argument

Link copied to clipboard

whether the parameter is likely passed as a named argument

Link copied to clipboard

whether the parameter is optional