ExtendedData

Description

The ExtendedData type is a placeholder for future argument or response elements. The ExtendedData type parameters are listed below.

Parameters

Name Type Description
data ExtraValue Holds the name value pair for an additional argument or response element.

Usage

The ExtendedData type is simply a placeholder for future arguments that might be added to a given call. Responses have a similar placeholder for future response elements.

XML

The following XML shows ExtendedData as seen within the auth argument of a typical call.

<urn:auth>
    <urn:userId>admin</urn:userId>
    <urn:password>password</urn:password>
    <urn:hostname>serverName</urn:hostname>
    <urn:loginAsUserId></urn:loginAsUserId>
    <urn:extendedData>
        <urn:data>
            <urn:name></urn:name>
            <urn:value></urn:value>
        </urn:data>
    </urn:extendedData>
</urn:auth>