 | MeasureCreationResult Class |
[This is preliminary documentation and is subject to change.]
Represent the result of a single measure creation or update
Inheritance Hierarchy
Namespace:
Dyostem.Services.Data
Assembly:
Dyostem (in Dyostem.dll) Version: 5.3
Syntaxpublic class MeasureCreationResult
Public Class MeasureCreationResult
Dim instance As MeasureCreationResult
public class MeasureCreationResult
Dyostem.Services.Data.MeasureCreationResult = function();
Type.createClass(
'Dyostem.Services.Data.MeasureCreationResult');
The MeasureCreationResult type exposes the following members.
Constructors
Properties
| Name | Description |
---|
 | CreationResult |
A human readable message of the creation/update measure command result. Should be one of the following values:
- "OK: value has been added/updated for MeasureTypeName (MeasureTypeId)" - The measure has been successfully added/updated
- Error(s) occured related to the measure type
- "WARNING: MeasureType id is not a valid (and existing) measure type unique identifier" - the measure type identifier sent by the third party system could not be found.
- "WARNING: MeasureType name is not a valid (and existing) measure type name" - the measure type name sent by the third party system could not be found.
- "WARNING: measure MeasureType name has already been found for this analysis" - A value for this measure type has already been defined for this analysis in this command.
- Error(s) occured related to the measure format
- "WARNING: value is not a valid value for MeasureTypeName (MeasureTypeId)" - value doesn't belong to the list of available values for MeasureTypeName.
- "WARNING: value is not a valid data time value for MeasureTypeName (MeasureTypeId)" - value could not be parsed as a valid date for MeasureTypeName.
- "WARNING: value is not a valid numeric value for MeasureTypeName (MeasureTypeId)" - value could not be converted as a valid number for MeasureTypeName.
- "WARNING: value is not a valid true/false value for MeasureTypeName (MeasureTypeId)" - value could not be parsed as a boolean value for MeasureTypeName.
|
 | MeasureTypeId |
The unique identifier of the updated/created measure
|
 | MeasureTypeName |
The name of the updated/created measure
|
Top
See Also