Skip to main content

AggregationInputDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Represents the input for aggregation operations on attributes.

public class AggregationInputDto

Inheritance ObjectAggregationInputDto

Properties

CountAttributePaths

Attribute paths whose existence to count, NULL values are not counted.

public IEnumerable<string> CountAttributePaths { get; set; }

Property Value

IEnumerable<String>

MaxValueAttributePaths

Attributes paths whose maximum value is to be determined.

public IEnumerable<string> MaxValueAttributePaths { get; set; }

Property Value

IEnumerable<String>

MinValueAttributePaths

Attributes paths whose minimum value is to be determined.

public IEnumerable<string> MinValueAttributePaths { get; set; }

Property Value

IEnumerable<String>

AvgAttributePaths

Attributes paths whose average value is to be determined.

public IEnumerable<string> AvgAttributePaths { get; set; }

Property Value

IEnumerable<String>

SumAttributePaths

Attributes paths whose sum value is to be determined.

public IEnumerable<string> SumAttributePaths { get; set; }

Property Value

IEnumerable<String>

Constructors

AggregationInputDto()

public AggregationInputDto()