Web Services Developer's Guide → Web Services API Reference → SBM Application Web Services → Arguments → ExtendedData
The ExtendedData type is a placeholder for future argument or response elements. The ExtendedData type parameters are listed below.
| Name | Type | Description | 
|---|---|---|
| data | ExtraValue | Holds the name value pair for an additional argument or response element. | 
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.
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>
 
    Copyright © 2007–2016 Serena Software, Inc. All rights reserved.