Skip to main content

FieldFilterWithPathDto

Namespace: Meshmakers.Octo.MeshAdapter.Nodes.PipelineDataTransferObjects

Represents a filter for a field with a specific path in the data structure.

public record FieldFilterWithPathDto : IEquatable<FieldFilterWithPathDto>

Inheritance ObjectFieldFilterWithPathDto
Implements IEquatable<FieldFilterWithPathDto>

Properties

AttributePath

Path of the attribute to filter

public string AttributePath { get; set; }

Property Value

String

Operator

Comparison operator

public FieldFilterOperatorDto Operator { get; set; }

Property Value

FieldFilterOperatorDto

ComparisonValue

Comparison value for the filter. This can be a primitive type, a complex object, or null.

public object ComparisonValue { get; set; }

Property Value

Object

ComparisonValuePath

Path to the value to compare against, if applicable.

public string ComparisonValuePath { get; set; }

Property Value

String

Constructors

FieldFilterWithPathDto()

Caution

Constructors of types with required members are not supported in this version of your compiler.


public FieldFilterWithPathDto()