HttpPathParameter
Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform
Represents a path parameter for HTTP requests
public record HttpPathParameter : IEquatable<HttpPathParameter>
Inheritance Object → HttpPathParameter
Implements IEquatable<HttpPathParameter>
Properties
Name
The name of the path parameter (e.g., "userId" for {userId})
public string Name { get; set; }
Property Value
ValuePath
The path to the value that will replace the parameter (optional if Value is provided)
public string ValuePath { get; set; }
Property Value
Value
The direct value to use for the parameter (optional if ValuePath is provided)
public string Value { get; set; }
Property Value
Constructors
HttpPathParameter()
public HttpPathParameter()