Enum ChemTypeReportOptionsContract
- Namespace
- Everest.Service.DataContracts.ChemTypes
- Assembly
- Everest.Service.dll
Specifies the available reporting options for a chemical type.
[DataContract]
[Flags]
public enum ChemTypeReportOptionsContract
Fields
[EnumMember] Chromatogram = 2Represents the option to include chromatogram data in the chemical type report.
This option can be combined with other reporting options using bitwise operations, as the enumeration is marked with the FlagsAttribute.
[EnumMember] None = 0Represents the absence of any reporting options for a chemical type.
This value indicates that no reporting options are applicable.
[EnumMember] QuantitativeReport = 1Represents a reporting option that provides quantitative data for a chemical type.
This option allows for the inclusion of numerical or measurable data in the report, such as concentrations, quantities, or other relevant metrics.
Remarks
This enumeration is marked with the FlagsAttribute, allowing bitwise combination of its member values to represent multiple reporting options.