UDSProbeParams Class
The objects of this class must be created in a Python script
in GetInputUDSParams
function. They are supplied to the Validate
function
if implemented.
Attributes
ProbeName
(read-only string)ProbeDescription
(read-only string)ParamType
(read-only string)ReportTypeName
(read-only string)ComponentExpression
(read-only string)
Constructor
UDSProbeParams(string probeName, string probeDescription, string paramType, string reportTypeName, string componentExpression);
probeName
- required.probeDescription
- optional (can be empty string).paramType
- required; can be one of theConstants
kDoubleParamStr
kComplexParamStr
reportTypeName
- optional (can be empty string)ComponentExpression
- optional (can be empty string)
Example:
udsProbParam = UDSProbeParams("probe1","", Constants.kDoubleParamStr, "", "",)