tValueTree
See Also: Integer, Declaring Variables, Struct
Purpose
tValueTree is a structured type used in web services.
Type Declaration
Struct tValueTree
String sValue
tValueTree[] children
End_Struct
Struct Members
sValue
Only has a value if there are no children. If the type of the [tSoapParamDef](tSoapParamDef.md).eType variable that is in the [tSoapParameter](tSoapParameter.md) 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.
Syntax
Use tValueTree.pkg
:
tValueTree {variableName}
Declaring Variables
To declare tValueTree variables, use the name of the type (tValueTree) followed by the variable name.
tValueTree MyValueTree
See struct variables for more details on instantiating struct types.