Skip to main content

HttpPathParameter

Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform

Represents a path parameter for HTTP requests

public record HttpPathParameter : IEquatable<HttpPathParameter>

Inheritance ObjectHttpPathParameter
Implements IEquatable<HttpPathParameter>

Properties

Name

The name of the path parameter (e.g., "userId" for {userId})

public string Name { get; set; }

Property Value

String

ValuePath

The path to the value that will replace the parameter (optional if Value is provided)

public string ValuePath { get; set; }

Property Value

String

Value

The direct value to use for the parameter (optional if ValuePath is provided)

public string Value { get; set; }

Property Value

String

Constructors

HttpPathParameter()

public HttpPathParameter()