Class QueryDefectCountsResult
Result from the QueryDefectCounts API.
[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class QueryDefectCountsResult
- Inheritance
-
QueryDefectCountsResult
- Inherited Members
Constructors
QueryDefectCountsResult(ProductionPeriod, ProductionStatistics)
Initializes a new instance of the QueryDefectCountsResult class.
public QueryDefectCountsResult(ProductionPeriod productionPeriod, ProductionStatistics productionStatistics)
Parameters
productionPeriodProductionPeriodThe production period for which this data applies.
productionStatisticsProductionStatisticsThe production statistics.
Exceptions
- ArgumentNullException
productionPeriodis null.- ArgumentNullException
productionStatisticsis null.
Properties
DefectCounts
Gets the list of defects.
public IList<DefectCount> DefectCounts { get; }
Property Value
ProductionPeriod
Gets the production period for which this data applies.
[DataMember]
public ProductionPeriod ProductionPeriod { get; }
Property Value
Remarks
For named periods, the actual date and shift values be set to reflect the effective values.
ProductionStatistics
Gets the production statistics.
[DataMember]
public ProductionStatistics ProductionStatistics { get; }