namespace RestEase
{
///
/// Helper which knows how to serialize path parameters
///
public abstract class RequestPathParamSerializer
{
///
/// Serialize a path parameter whose value is scalar (not a collection), into a string value
///
/// Type of the value to serialize
/// Value of the path parameter
/// Extra info which may be useful to the serializer
/// A string value to use as path parameter
public abstract string? SerializePathParam(T value, RequestPathParamSerializerInfo info);
}
}