namespace RestEase
{
///
/// Type of serialization that should be applied to the path parameter's value
///
public enum PathSerializationMethod
{
///
/// Serialized using its .ToString() method
///
ToString,
///
/// Serialized using the configured RequestPathParamSerializer
///
Serialized,
///
/// Use the default serialization method. You probably don't want to specify this yourself
///
Default,
}
}