RequestPathParameterValue

public protocol RequestPathParameterValue

A type that can be used as a value for a request path parameter.

The RequestPathParameterValue protocol defines a type that can be used as a value for a request path parameter. It requires conforming types to provide a serialized property that returns a string representation of the path parameter value.

  • The serialized value of the path parameter.

    This property represents the serialized value of the path parameter. It is used to convert the path parameter value into a string format suitable for URL paths.

    Declaration

    Swift

    var serialized: String { get }