See Also: Integer, Declaring Variables, Struct
tValueTree is a structured type used in web services.
Struct tValueTree
String sValue
tValueTree[] children
End_Struct
sValue
Only has a value if there are no children. If the type of the tSoapParamDef.eType variable that is in the tSoapParameter with the current tValueTree is a struct or array, the children array will have elements, but sValue will be blank.
children
Array of child value trees, each also of type tValueTree. This array will only have elements in it if the type is a struct or an array.
Use tValueTree.pkg
:
tValueTree {variableName}
To declare tValueTree variables, use the name of the type (tValueTree) followed by the variable name.
tValueTree MyValueTree
See struct variables for more details of instantiating struct types.