From b9dd015c8e05ef29f03e5f32d584fec58df6e185 Mon Sep 17 00:00:00 2001 From: Alan Seiden Date: Fri, 14 Oct 2022 15:17:20 -0400 Subject: [PATCH] docs: Add omit as valid value for io Signed-off-by: Alan Seiden --- lib/ProgramCall.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ProgramCall.js b/lib/ProgramCall.js index 6613315c..2450f1da 100644 --- a/lib/ProgramCall.js +++ b/lib/ProgramCall.js @@ -103,8 +103,8 @@ class ProgramCall { * @property {string} value - The value of the data. * @property {string} [name] - The name of the parameter. * @property {data[]} [fields] - The array of data objects for a ds. - * @property {string} [io] - Whether the parameter is used for input, output, or both. - * Valid values are ``in``, ``out``, or ``both``. + * @property {string} [io] - Whether the parameter is used for input, output, both, or *OMIT. + * Valid values are ``in``, ``out``, ``both``, and ``omit``. * @property {string} [by] - Whether to pass the parameter by reference or value. * Valid values are ``ref`` or ``val``. NOTE: Pass by value requires ``XMLSERVICE >= 1.9.9.3``. * @property {string} [dim] - Sets ds array dimension value.