AXL-Client-Simple

 view release on metacpan or  search on metacpan

INSTALL  view on Meta::CPAN

WHAT IS THIS?

This is AXL::Client::Simple, a Perl module.
Please see the README that comes with this distribution.

HOW DO I INSTALL IT?

To install this module, cd to the directory that contains this README
file and type the following:

   perl Makefile.PL
   make
   make test
   make install

META.yml  view on Meta::CPAN

---
abstract: 'Cisco Unified Communications XML API'
author:
  - 'Oliver Gorwits C<< <oliver.gorwits@oucs.ox.ac.uk> >>'
build_requires:
  ExtUtils::MakeMaker: 6.59
configure_requires:
  ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
generated_by: 'Module::Install version 1.16'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: AXL-Client-Simple
no_index:
  directory:
    - inc

inc/Module/Install/Makefile.pm  view on Meta::CPAN


# If we are passed a param, do a "newer than" comparison.
# Otherwise, just return the MakeMaker version.
sub makemaker {
	( @_ < 2 or $makemaker >= eval($_[1]) ) ? $makemaker : 0
}

# Ripped from ExtUtils::MakeMaker 6.56, and slightly modified
# as we only need to know here whether the attribute is an array
# or a hash or something else (which may or may not be appendable).
my %makemaker_argtype = (
 C                  => 'ARRAY',
 CONFIG             => 'ARRAY',
# CONFIGURE          => 'CODE', # ignore
 DIR                => 'ARRAY',
 DL_FUNCS           => 'HASH',
 DL_VARS            => 'ARRAY',
 EXCLUDE_EXT        => 'ARRAY',
 EXE_FILES          => 'ARRAY',
 FUNCLIST           => 'ARRAY',
 H                  => 'ARRAY',

inc/Module/Install/Makefile.pm  view on Meta::CPAN

 DEFINE    => 'APPENDABLE',
 INC       => 'APPENDABLE',
 LDDLFLAGS => 'APPENDABLE',
 LDFROM    => 'APPENDABLE',
);

sub makemaker_args {
	my ($self, %new_args) = @_;
	my $args = ( $self->{makemaker_args} ||= {} );
	foreach my $key (keys %new_args) {
		if ($makemaker_argtype{$key}) {
			if ($makemaker_argtype{$key} eq 'ARRAY') {
				$args->{$key} = [] unless defined $args->{$key};
				unless (ref $args->{$key} eq 'ARRAY') {
					$args->{$key} = [$args->{$key}]
				}
				push @{$args->{$key}},
					ref $new_args{$key} eq 'ARRAY'
						? @{$new_args{$key}}
						: $new_args{$key};
			}
			elsif ($makemaker_argtype{$key} eq 'HASH') {
				$args->{$key} = {} unless defined $args->{$key};
				foreach my $skey (keys %{ $new_args{$key} }) {
					$args->{$key}{$skey} = $new_args{$key}{$skey};
				}
			}
			elsif ($makemaker_argtype{$key} eq 'APPENDABLE') {
				$self->makemaker_append($key => $new_args{$key});
			}
		}
		else {
			if (defined $args->{$key}) {
				warn qq{MakeMaker attribute "$key" is overriden; use "makemaker_append" to append values\n};
			}
			$args->{$key} = $new_args{$key};
		}
	}

inc/Module/Install/Metadata.pm  view on Meta::CPAN


my @boolean_keys = qw{
	sign
};

my @scalar_keys = qw{
	name
	module_name
	abstract
	version
	distribution_type
	tests
	installdirs
};

my @tuple_keys = qw{
	configure_requires
	build_requires
	requires
	recommends
	bundles

inc/Module/Install/Metadata.pm  view on Meta::CPAN

	while ( my ( $name, $mods ) = splice( @_, 0, 2 ) ) {
		$self->feature( $name, @$mods );
	}
	return $self->{values}->{features}
		? @{ $self->{values}->{features} }
		: ();
}

sub no_index {
	my $self = shift;
	my $type = shift;
	push @{ $self->{values}->{no_index}->{$type} }, @_ if $type;
	return $self->{values}->{no_index};
}

sub read {
	my $self = shift;
	$self->include_deps( 'YAML::Tiny', 0 );

	require YAML::Tiny;
	my $data = YAML::Tiny::LoadFile('META.yml');

inc/Module/Install/Share.pm  view on Meta::CPAN

use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
	$VERSION = '1.16';
	@ISA     = 'Module::Install::Base';
	$ISCORE  = 1;
}

sub install_share {
	my $self = shift;
	my $dir  = @_ ? pop   : 'share';
	my $type = @_ ? shift : 'dist';
	unless ( defined $type and $type eq 'module' or $type eq 'dist' ) {
		die "Illegal or invalid share dir type '$type'";
	}
	unless ( defined $dir and -d $dir ) {
    		require Carp;
		Carp::croak("Illegal or missing directory install_share param: '$dir'");
	}

	# Split by type
	my $S = ($^O eq 'MSWin32') ? "\\" : "\/";

	my $root;
	if ( $type eq 'dist' ) {
		die "Too many parameters to install_share" if @_;

		# Set up the install
		$root = "\$(INST_LIB)${S}auto${S}share${S}dist${S}\$(DISTNAME)";
	} else {
		my $module = Module::Install::_CLASS($_[0]);
		unless ( defined $module ) {
			die "Missing or invalid module name '$_[0]'";
		}
		$module =~ s/::/-/g;

lib/AXL/Client/Simple/Phone.pm  view on Meta::CPAN

=back

=head2 LINES QUERY AND RESULT SET

=head2 $device->lines

Query the Unified Communications server and retrieve phone line details for
this device. 

The returned object contains the ordered collection of phone lines and is of
type C<AXL::Client::Simple::LineResultSet>. It's an iterator, so you can walk
through the list of lines (see the synposis, above). For example:

 my $lines = $device->lines;

=head2 $lines->next

Provides the next item in the collection of lines, or C<undef> if there are no
more items to return. Usually used in a loop along with C<has_next> like so:

 while ($lines->has_next) {

lib/AXL/Client/Simple/Phone.pm  view on Meta::CPAN

Resets the iterator's cursor, so you can walk through the entries again from
the start.

=head2 $lines->count

Returns the number of entries returned by the C<lines> server query.

=head2 $lines->items

Returns an array ref containing all the entries returned by the C<lines>
server query. They are each objects of type C<AXL::Client::Simple::Line>.

=head2 PHONE PROPERTIES

=head2 $device->currentProfileName

If the device has Extension Mobility enabled and an extension mobility profile
is active, then its name will be returned by this accessor.

=head2 $device->loginUserId

share/AXLAPI.wsdl  view on Meta::CPAN

</operation>

<operation  name="updateGeoLocationFilter">

<input  message="s0:updateGeoLocationFilterIn"></input>

<output  message="s0:updateGeoLocationFilterOut"></output>

</operation>

<operation  name="removeGeoLocationFilter">

<input  message="s0:removeGeoLocationFilterIn"></input>

<output  message="s0:removeGeoLocationFilterOut"></output>

</operation>

</portType>

<binding  name="AXLAPIBinding" type="s0:AXLPort">

<soap:binding  transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding>

<operation  name="addCommonPhoneConfig">

<soap:operation  soapAction="CUCM:DB ver=7.1 addCommonPhoneConfig" style="document"></soap:operation>

<input>

<soap:body  use="literal"></soap:body>

</input>

<output>

<soap:body  use="literal"></soap:body>

</output>

</operation>

share/AXLSoap.xsd  view on Meta::CPAN

**********************
]]></xsd:documentation>
</xsd:annotation>
<!-- axl.xsd -->

	<!-- *********************************************************** -->
	<!-- Device Family                                               -->
	<!-- *********************************************************** -->
	<xsd:complexType name="XAARGroup">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String32"/>
			<xsd:element name="relatedGroups" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.  AXL API automatically adds the required entries in the AARDialPrefixMatrix table.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="relatedGroup" type="axlapi:XAARGroupRelationship" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XAARGroupRelationship">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="AARGroup_From" type="axlapi:XAARGroup"/>
				<xsd:element name="GroupNameFrom" type="axlapi:String100"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="AARGroup_To" type="axlapi:XAARGroup"/>
				<xsd:element name="GroupNameTo" type="axlapi:String100"/>
			</xsd:choice>
			<xsd:element name="prefixDigit" type="axlapi:String32"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XApplicationUser">
		<xsd:sequence>
			<xsd:element name="userid" type="xsd:string"/>
			<xsd:element name="password" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Valid range is 1-127 characters.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="passwordCredentials" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only.Credential configuration for password.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:choice minOccurs="0">
							<xsd:element name="pwdCredPolicy">
								<xsd:annotation>
									<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
								</xsd:annotation>
								<xsd:complexType>
									<xsd:complexContent>
										<xsd:extension base="axlapi:XCredentialPolicy">
											<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
										</xsd:extension>
									</xsd:complexContent>
								</xsd:complexType>
							</xsd:element>
							<xsd:element name="pwdCredPolicyName" type="axlapi:String50"/>
						</xsd:choice>
						<xsd:element name="pwdCredUserCantChange" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pwdCredUserMustChange" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pwdCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pwdCredTimeChanged" type="xsd:string" minOccurs="0"/>
						<xsd:element name="pwdCredTimeAdminLockout" type="xsd:string" minOccurs="0"/>
						<xsd:element name="pwdCredLockedByAdministrator" type="xsd:boolean" minOccurs="0"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="digestCredentials" type="xsd:string" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Valid range is 1-42 characters.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="presenceGroup" type="axlapi:XPresenceGroup" nillable="false" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="presenceGroupName" type="axlapi:String50" nillable="false" minOccurs="0"/>
			</xsd:choice>
			<xsd:element name="acceptPresenceSubscription" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptOutOfDialogRefer" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptUnsolicitedNotification" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="allowReplaceHeader" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="isStandard" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="associatedDevices" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Also known as controlled devices.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="device" type="axlapi:String50" minOccurs="0" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Name of device.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="associatedGroups" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The User Groups to which the application user is associated with.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="userGroup" minOccurs="0" maxOccurs="unbounded">
							<xsd:complexType>
								<xsd:sequence minOccurs="0">
									<xsd:element name="name" type="axlapi:String100" nillable="false" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Name of User Group</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="userRoles" nillable="true" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Read Only.</xsd:documentation>
										</xsd:annotation>
										<xsd:complexType>
											<xsd:sequence minOccurs="0">
												<xsd:element name="userRole" nillable="true" minOccurs="0" maxOccurs="unbounded">
													<xsd:annotation>
														<xsd:documentation>Name of the User Role associated with the user group.</xsd:documentation>
													</xsd:annotation>
													<xsd:complexType>
														<xsd:simpleContent>
															<xsd:extension base="axlapi:String100">
																<xsd:attribute name="uuid" type="axlapi:XUUID"/>
															</xsd:extension>
														</xsd:simpleContent>
													</xsd:complexType>
												</xsd:element>
											</xsd:sequence>
										</xsd:complexType>
									</xsd:element>
								</xsd:sequence>
								<xsd:attribute name="uuid" type="axlapi:XUUID"/>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="associatedCAPFProfiles" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only.The Certification Authority Proxy Function Profiles  to which the application user is associated with. </xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="CAPFProfileInstanceId" type="axlapi:String128" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDevice">
		<xsd:annotation>
			<xsd:documentation>Abstraction of all devices in the Call Manager system.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:UniqueString128">
				<xsd:annotation>
					<xsd:documentation>The device name, using only URL-friendly characters.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="axlapi:String128" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Optional description of the device.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>Product/Model/Class block</xsd:documentation>
				</xsd:annotation>
				<xsd:choice>
					<xsd:annotation>
						<xsd:documentation>Product information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
					<xsd:element name="product" type="xsd:string"><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Product ID string.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="productInfo" type="axlapi:XProductInfo">
						<xsd:annotation>
							<xsd:documentation>Complete product information block.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
				<xsd:choice>
					<xsd:annotation>
						<xsd:documentation>Model information is read-only.</xsd:documentation>
					</xsd:annotation>
					<xsd:element name="model" type="xsd:string"><!--This field is of the type axl:XModel in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Model ID string.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="modelInfo" type="axlapi:XModelInfo">
						<xsd:annotation>
							<xsd:documentation>Complete model information block.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
				<xsd:element name="class" type="xsd:string"><!--This field is of the type axl:XClass in AXLEnums.xsd-->
					<xsd:annotation>
						<xsd:documentation>Class ID string. Class information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>Protocol block</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="protocol" type="xsd:string"><!--This field is of the type axl:XDeviceProtocol in AXLEnums.xsd-->
					<xsd:annotation>
						<xsd:documentation>Protocol information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="protocolSide" type="xsd:string"><!--This field is of the type axl:XProtocolSide in AXLEnums.xsd-->
					<xsd:annotation>
						<xsd:documentation>Side information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Any device that makes calls has a calling search space. This tag is not valid for a device profile.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Device Pools are required for  most devices, including phones and gateways. Its not required for Device Profile.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="devicePool" type="axlapi:XDevicePool">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="axlapi:UniqueString50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="commonDeviceConfig" type="axlapi:XCommonDeviceConfig" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="commonDeviceConfigName" type="axlapi:UniqueString50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Only applicable to Phone.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="commonPhoneConfig" type="axlapi:XCommonPhoneConfig" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="commonPhoneConfigName" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="networkLocation" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>The new Device Destination flag for Trunk to Trunk Transfer and Drop Conference Feature is required for most gateways, except FXS gateways and phones. Not Nullable.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>All devices that receive calls implicitly have a location for bandwidth negotiation. If the location is not defined, it is assumed to be LOCAL.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="location" type="axlapi:XLocation">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Media Resource (MOH) information. This tag is not valid for a device profile.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="mediaResourceList" type="axlapi:XMediaResourceList">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="mediaResourceListName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is not valid for H323Phone, H323Trunk and SIPTrunk.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is not valid for H323Phone, H323Trunk and SIPTrunk.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is not valid for a device profile.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="automatedAlternateRoutingCSS" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>The calling search space used by Automated Alternate Routing. Nullable. Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50">
					<xsd:annotation>
						<xsd:documentation>The name of the calling search space used by Automated Alternate Routing.  Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is not valid for a device profile.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="aarNeighborhood" type="axlapi:XAARNeighborhood">
					<xsd:annotation>
						<xsd:documentation>For IP Phones and Gateways. Nullable. Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="aarNeighborhoodName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="loadInformation" type="axlapi:XLoadInformation" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>For devices with load information, if any special load information is specified, the special attribute is set to TRUE. Otherwise, the load information is the default for the product.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0"/>
			<xsd:element name="versionStamp" type="axlapi:String128" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>UUID changed each time the device is updated.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="traceFlag" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="retryVideoCallAsAudio" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is valid only for phones, SIP trunks and voice mail ports. Not nullable.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="securityProfile">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
					<xsd:complexType>
						<xsd:attribute name="uuid" type="axlapi:XUUID"/>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="securityProfileName" type="axlapi:UniqueString50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is valid only for SIP Trunks and SIP Phones.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="sipProfile">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
					<xsd:complexType>
						<xsd:attribute name="uuid" type="axlapi:XUUID"/>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="sipProfileName" type="axlapi:UniqueString50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Not Applicable for VoicemailPort, DeviceProfile, T1-CAS and FXO ports. </xsd:documentation>
				</xsd:annotation>
				<xsd:element name="cgpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Not Applicable for VoicemailPort, DeviceProfile, T1-CAS and FXO ports. </xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Not applicable for Device Profiles</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="geoLocationName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Not applicable for Device Profiles, CTI Route Points, Phones, Voicemail, FXS ports</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="geoLocationFilterName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="sendGeoLocation" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Not applicable for Device Profiles, CTI Route Points, Phones, H323 devices, FXS, FXO, T1, PRI, BRI and VoiceMail Ports</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="ctiid" type="xsd:positiveInteger">
			<xsd:annotation>
				<xsd:documentation>Computer Telephony Interface ID, Unique, Cannot be null.</xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XVoiceMailPort">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence minOccurs="0">
					<xsd:element name="line" type="axlapi:XLine">
						<xsd:annotation>
							<xsd:documentation>This is the entry to the DeviceNumPlanMap table.  The directory number is referred to by the "dirn" or "dirnId" sub-element.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XCTIRoutePoint">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence minOccurs="0">
					<xsd:element name="userLocale" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
					<xsd:element name="lines" minOccurs="0">
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>An XLine is an entry in the DeviceNumPlanMap table.  The actual directory number is referenced inside the XLine object by the "dirn" or "dirnId" element.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="lineId" type="axlapi:XLineId" maxOccurs="unbounded"/>
								<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>The lineIdentifier is a shorthand method that refers to a particular direcotyr number.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XConferenceBridge">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:UniqueName128" nillable="false"/>
			<xsd:element name="description" type="axlapi:String128" nillable="true" minOccurs="0"/>
			<xsd:element name="product" type="xsd:string" nillable="false"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
			<xsd:choice>
				<xsd:element name="devicePool" type="axlapi:XDevicePool" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="axlapi:UniqueString50" nillable="false"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="location" type="axlapi:XLocation" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String50" default="Hub_None" nillable="false"/>
			</xsd:choice>
			<xsd:element name="subUnit" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Applicable for               Cisco Conference Bridge (WS-SVC-CMM)             and Cisco Media Server(WS-SVC-CMM-MS).  Valid values range from 1 to 4.The value should be given as per the formula.       Cisco Media Server :     ...
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="loadInformation" type="axlapi:XLoadInformation" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is used only by Cisco Conference Bridge Hardware.For devices with load information, if any special load information is specified, the special attribute is set to TRUE. Otherwise, the load information is the default fo...
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is used only by     Cisco Video Conference Bridge(IPVC-35xx),Cisco Conference Bridge (WS-SVC-CMM) and    Cisco Media Server(WS-SVC-CMM-MS).</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="maximumCapacity" type="xsd:nonNegativeInteger" default="32" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is used only by Cisco Conference Bridge(WS-SVC-CMM) and   Cisco Media Server(WS-SVC-CMM-MS). Valid values for this tag are 32,64,96,128.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Valid only for Cisco IOS Enhanced Conference Bridge</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="securityProfile" type="axlapi:XUUID" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="securityProfileName" type="axlapi:UniqueString50" nillable="false"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XPilotHuntGroup">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="pilotPoint">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
					<xsd:complexType>
						<xsd:complexContent>
							<xsd:extension base="axlapi:XPilotPoint">
								<xsd:attribute name="uuid" type="axlapi:XUUID"/>
							</xsd:extension>
						</xsd:complexContent>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="pilotPointName" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XPilotHuntGroupMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XPilotHuntGroupMember">
		<xsd:sequence>
			<xsd:element name="sortOrder" type="xsd:nonNegativeInteger"/>
			<xsd:choice>
				<xsd:element name="deviceMemberInfo">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="alwaysRoute" type="xsd:boolean" minOccurs="0"/>
							<xsd:element name="dirn" type="axlapi:XNPDirectoryNumber">
								<xsd:annotation>
									<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="userMemberInfo">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="lineIndex" type="xsd:nonNegativeInteger"/>
							<xsd:element name="pilotUserId"/>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XPilotUser">
		<xsd:sequence minOccurs="0">
			<xsd:element name="userId" type="axlapi:String255" nillable="false"/>
			<xsd:element name="password" type="xsd:string" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XGateway">
		<xsd:annotation>
			<xsd:documentation>This is an abstract base type for all Gateways to extend.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence>
					<xsd:sequence>
						<xsd:choice minOccurs="0">
							<xsd:element name="cdpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
								<xsd:annotation>
									<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
						</xsd:choice>
						<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					</xsd:sequence>
					<xsd:sequence>
						<xsd:annotation>
							<xsd:documentation>Supported only by a few MGCP gateways like 26XX, 366X, 37XX, 269X, 38XX, VG224.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="packetCaptureMode" type="xsd:string" default="None" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
						<xsd:element name="packetCaptureDuration" type="xsd:positiveInteger" default="60" minOccurs="0"/>
						<xsd:element name="GClearEnable" type="xsd:boolean" default="false" minOccurs="0"/>
					</xsd:sequence>
					<xsd:element name="enableProtectedFacilityIE" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for DigitalAccess PRI Gateways</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformNationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformInternationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformSubscriberCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XAnalogGateway">
		<xsd:annotation>
			<xsd:documentation>Analog Gateways extend Device and are concrete types.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XGateway">
				<xsd:sequence>
					<xsd:element name="country" type="xsd:string" nillable="true" minOccurs="0"><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The gateway's country code. Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="maxPorts" type="xsd:positiveInteger">
						<xsd:annotation>
							<xsd:documentation>The maximum number of ports this gateway supports.  Read-only.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="ports" type="axlapi:XAnalogPortList">
						<xsd:annotation>
							<xsd:documentation>The list of ports on the gateway.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="trunkSelectionOrder" type="xsd:string"><!--This field is of the type axl:XTrunkSelectionOrder in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Describes the trunk-selection order for this gateway (ie, bottom-up, top-down).</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="helpURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XDigitalGateway" abstract="true">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XGateway">
				<xsd:sequence minOccurs="0">
					<xsd:element name="country" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
					<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable to PRI gateways.For analog and T1 gateways, this tag comes under ports.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="trunkSelectionOrder" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XTrunkSelectionOrder in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Does not apply to PRI gateways.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XPresenceGroup">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String128"/>
			<xsd:element name="description" type="axlapi:String128" minOccurs="0"/>
			<xsd:element name="matrix" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XMatrix in AXLEnums.xsd-->
			<xsd:element name="isStandard" type="xsd:boolean" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XIPPhone">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XPhone">
				<xsd:sequence minOccurs="0">
					<xsd:element name="blfDirectedCallParks" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="blfDirectedCallPark" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:complexContent>
											<xsd:extension base="axlapi:XBLFDirectedCallPark">
												<xsd:attribute name="index" type="xsd:positiveInteger"/>
											</xsd:extension>
										</xsd:complexContent>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="addOnModules" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Additional modules attached to the phone. There can be 0, 1, or 2.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="addOnModule" type="axlapi:XAddOnModule" minOccurs="0" maxOccurs="2"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="userLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
					<xsd:element name="networkLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
					<xsd:element name="idleTimeout" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="authenticationURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="directoryURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="idleURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="informationURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="messagesURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="proxyServerURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="servicesURL" type="xsd:anyURI" nillable="true" minOccurs="0"/>
					<xsd:element name="services" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="service" type="axlapi:XSubscribedService" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="softkeyTemplate" type="axlapi:XSoftkeyTemplate">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="softkeyTemplateName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="loginUserId" type="axlapi:String255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only for IP Phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:sequence minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Extension Mobility block.  By default, extension mobility is disabled.  To enable, include a default profile and set enableExtensionMobility to true.  Only applicable to 7960 and 7940 phones.  If enableExtensionMobility ...
						</xsd:annotation>
						<xsd:choice>
							<xsd:annotation>
								<xsd:documentation>The absence of this tag would mean the device would use the current device Settings</xsd:documentation>
							</xsd:annotation>
							<xsd:element name="defaultProfile" type="axlapi:XProfile" nillable="false" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>Only the "uuid" attribute is applicable to the AXL API.  Not nullable.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="defaultProfileName" type="axlapi:String50" nillable="false" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>The name of the default profile for this device.  Not nullable.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:choice>
						<xsd:element name="enableExtensionMobility" type="xsd:boolean">
							<xsd:annotation>
								<xsd:documentation> Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:choice minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The current user profile in use by this device.  Read-only.</xsd:documentation>
							</xsd:annotation>
							<xsd:element name="currentProfile" type="axlapi:XProfile" nillable="false">
								<xsd:annotation>
									<xsd:documentation>Read-only.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="currentProfileName" type="axlapi:String50" nillable="false">
								<xsd:annotation>
									<xsd:documentation>Read-only.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:choice>
						<xsd:element name="loginTime" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Read-only.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="loginDuration" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Read-only.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
					<xsd:element name="currentConfig" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for a getPhoneResponse. It contains Extension Mobility related parameters for a device when a user is logged in using a user defined device profile. If no user is logged in, the original device informa...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
								<xsd:choice minOccurs="0">
									<xsd:element name="phoneTemplate" type="axlapi:XPhoneTemplate">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="phoneTemplateName" type="axlapi:String50" nillable="false"/>
								</xsd:choice>
								<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
									<xsd:annotation>
										<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
									<xsd:annotation>
										<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:choice minOccurs="0">
									<xsd:element name="softkeyTemplate" type="axlapi:XSoftkeyTemplate">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="softkeyTemplateName" type="xsd:string"/>
								</xsd:choice>
								<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="singleButtonBarge" type="axlapi:XBarge" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>This tag is valid only for devices that support SBB.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="joinAcrossLines" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
									<xsd:annotation>
										<xsd:documentation>This tag is valid only for devices that support JAL.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="callInfoPrivacyStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
								<xsd:element name="dndStatus" type="xsd:boolean" nillable="false" minOccurs="0"/>
								<xsd:element name="dndRingSetting" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
								<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0"/>
								<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
								<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
								<xsd:element name="logMissedCalls" type="xsd:boolean" default="true" minOccurs="0"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="singleButtonBarge" type="axlapi:XBarge" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support SBB.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="joinAcrossLines" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support JAL.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="builtInBridgeStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="callInfoPrivacyStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="hlogStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ownerUserId" type="axlapi:String255" nillable="true" minOccurs="0"/>
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="packetCaptureMode" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
					<xsd:element name="packetCaptureDuration" type="xsd:nonNegativeInteger" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is not valid for a device profile.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="subscribeCallingSearchSpace" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is not valid for a device profile.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="rerouteCallingSearchSpace" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="rerouteCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="allowCtiControlFlag" type="xsd:boolean" default="true" nillable="true" minOccurs="0"/>
					<xsd:choice>
						<xsd:element name="presenceGroup" type="axlapi:XPresenceGroup" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="presenceGroupName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="requireDTMFReception" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="RFC2833Disabled" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="phoneLoadName" type="axlapi:String32" minOccurs="0"/>
					<xsd:element name="certificateOperation" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XCertificateOperation in AXLEnums.xsd-->
					<xsd:sequence minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>These tags can be updated only if securityProfile is not mentioned in the request.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="authenticationMode" type="axlapi:XAuthenticationMode" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>authenticationMode can be updated only if certificateOperation field is Install/Upgrade, Delete or Troubleshoot.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="keySize" type="axlapi:XKeySize" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>keySize can be updated only if certificateOperation field is Install/Upgrade, Delete or Troubleshoot.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
					<xsd:element name="authenticationString" type="axlapi:String128" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>authenticationString can be updated only if certificateOperation field is Install/Upgrade, Delete or Troubleshoot.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="certificateStatus" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XCertificateStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Read-only tag.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="upgradeFinishTime" type="xsd:string" minOccurs="0"/>
					<xsd:element name="deviceMobilityMode" type="xsd:string" default="Default" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Specifies if the phone is configured for device mobility feature or not</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="roamingDevicePoolName" type="axlapi:UniqueString50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only. Specifies the device pool being used if the device is roaming and the devicemobility feature is enabled for it.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="remoteDevice" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndRingSetting" type="xsd:string" nillable="true" minOccurs="0"><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndStatus" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isActive" type="xsd:boolean" default="true" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag determines if the newly added phone is active to determine consumption of license. If set to false the license units will not be consumed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isDualMode" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only tag.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for dual mode phones.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="mobilityUser" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the mobility User for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mobilityUserIdName" type="axlapi:String50" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The userid of the mobility user for this phone. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="phoneSuite" type="axlapi:XPhonePersonalization" default="Default" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If a blank tag is passed, the value of "Default" is inserted into the database.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneServiceDisplay" type="axlapi:XPhoneServiceDisplay" minOccurs="0"/>
					<xsd:element name="isProtected" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support Secure Tone</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for CUMC devices.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="mobileSmartClientProfile" type="axlapi:XMobileSmartClientProfile">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mobileSmartClientProfileName" type="axlapi:String128"/>
					</xsd:choice>
					<xsd:element name="mtpRequired" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mtpPreferredCodec" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XSIPCodec in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialRules" type="axlapi:XSIPDialRules" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialRulesName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="sshUser" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable only to those devices that support ssh feature.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="sshPwd" type="axlapi:String255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable only to those devices that support ssh feature.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="digestUser" type="axlapi:String255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="outboundCallRollover" type="axlapi:XOutboundCallRollover" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable to only those phones that support Automatic Outbound Call Rollover.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XBusyLampField">
		<xsd:sequence>
			<xsd:choice>
				<xsd:sequence>
					<xsd:element name="blfDirn" type="axlapi:XDirectoryNumber"/>
					<xsd:element name="routePartition" type="xsd:string" minOccurs="0"/>
				</xsd:sequence>
				<xsd:element name="blfDest" type="xsd:nonNegativeInteger"/>
			</xsd:choice>
			<xsd:element name="label" type="xsd:string" minOccurs="0"/>
			<xsd:element name="asciiLabel" type="axlapi:String50" nillable="true" minOccurs="0"/>
			<xsd:element name="associatedBLFSDFeatures" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Features associated with this BLFSpeedDial button</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="feature" type="axlapi:XBLFSDOption" minOccurs="0" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Name of the feature.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="index" type="xsd:positiveInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XBLFDirectedCallPark">
		<xsd:sequence>
			<xsd:element name="label" type="axlapi:String50" nillable="true" minOccurs="0"/>
			<xsd:choice>
				<xsd:element name="directedCallParkId" type="axlapi:XUUID"/>
				<xsd:element name="directedCallParkDNAndPartition">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="dnPattern" type="axlapi:XDirectoryNumber" nillable="false"/>
							<xsd:choice minOccurs="0">
								<xsd:element name="routePartition" type="axlapi:XRoutePartition" nillable="true" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Only the UUID attribute is read by AXL API.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="routePartitionName" type="axlapi:UniqueName50" nillable="true" minOccurs="0"/>
							</xsd:choice>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="labelAscii" type="axlapi:String50" nillable="true" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XPhone">
		<xsd:annotation>
			<xsd:documentation>Abstract representation of a phone device.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence minOccurs="0">
					<xsd:element name="associatedPC" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="lines" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>When adding or updating a phone with the AXL API, only use the 'line' element.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
								<xsd:element name="lineId" type="axlapi:XLineId" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>Do not use when adding or updating a phone.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="lineLabel" type="xsd:string" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>Do not use when adding or updating a phone.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>Do not use when adding or updating a phone.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="numberOfButtons" type="xsd:positiveInteger" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="phoneTemplate" type="axlapi:XPhoneTemplate">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="phoneTemplateName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="speeddials" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="speeddial" type="axlapi:XSpeeddial" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="busyLampFields" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="busyLampField" type="axlapi:XBusyLampField" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="primaryPhone" type="axlapi:XDevice">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="primaryPhoneName" type="axlapi:String128" nillable="true"/>
					</xsd:choice>
					<xsd:element name="ringSettingIdleBLFAudibleAlert" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ringSettingBusyBLFAudibleAlert" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XProfile">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence>
					<xsd:element name="deviceProfile" type="xsd:string"/><!--This field is of the type axl:XDeviceProfile in AXLEnums.xsd-->
					<xsd:element name="loginUserid" type="xsd:string"/>
					<xsd:element name="loginTime" type="xsd:time"/>
					<xsd:element name="loginDuration" type="xsd:nonNegativeInteger"/>
					<xsd:element name="allowHoteling" type="xsd:boolean"/>
					<xsd:element name="defaultProfileId" type="axlapi:XUUID" minOccurs="0"/>
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneServiceDisplay" type="axlapi:XPhoneServiceDisplay" minOccurs="0"/>
					<xsd:element name="requirePKIAuthForHTTPS" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XBRIGateway">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDigitalGateway">
				<xsd:sequence>
					<xsd:element name="acceptInboundRDNIS" type="xsd:boolean"/>
					<xsd:element name="briProtocol" type="xsd:string"/><!--This field is of the type axl:XBriProtocol in AXLEnums.xsd-->
					<xsd:element name="calledPlan" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPri" type="xsd:string"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="callerIDDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
					<xsd:element name="callingPartySelection" type="xsd:string"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
					<xsd:element name="callingPlan" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPri" type="xsd:string"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="chanIE" type="xsd:nonNegativeInteger">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="clockReference" type="xsd:string"/><!--This field is of the type axl:XClockReference in AXLEnums.xsd-->
					<xsd:element name="csuParam" type="xsd:string"/><!--This field is of the type axl:XCSUParam in AXLEnums.xsd-->
					<xsd:element name="dChannelEnable" type="xsd:boolean"/>
					<xsd:element name="direction" type="xsd:boolean"/>
					<xsd:element name="displayIE" type="xsd:boolean"/>
					<xsd:element name="encode" type="xsd:string"/><!--This field is of the type axl:XEncode in AXLEnums.xsd-->
					<xsd:element name="fdlChannel" type="xsd:string"/><!--This field is of the type axl:XFDLChannel in AXLEnums.xsd-->
					<xsd:element name="firstDelay" type="xsd:nonNegativeInteger"/>
					<xsd:element name="framing" type="xsd:string"/><!--This field is of the type axl:XFraming in AXLEnums.xsd-->
					<xsd:element name="intraDelay" type="xsd:nonNegativeInteger"/>
					<xsd:element name="numberIE" type="xsd:boolean"/>
					<xsd:element name="numDigits" type="xsd:nonNegativeInteger">
						<xsd:annotation>
							<xsd:documentation>The value of numDigits must be either 0 to 32 or 99.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="prefix" type="xsd:string" minOccurs="0"/>
					<xsd:element name="presentationBit" type="xsd:string"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="sendRestart" type="xsd:boolean"/>
					<xsd:element name="setupNonISDNPI" type="xsd:boolean"/>
					<xsd:element name="sigDigits" type="xsd:boolean">
						<xsd:annotation>
							<xsd:documentation>This tag enables the significant digits for the gateway; if the tag is set to true, the value of the 'numDigits' element is used as Significant Digits for the gateway. This tag should have a value of false if numDigits is se...
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="stableIn4" type="xsd:boolean"/>
					<xsd:element name="statusPoll" type="xsd:boolean"/>
					<xsd:element name="stripCountOut" type="xsd:nonNegativeInteger"/>
					<xsd:element name="trunkPadRx" type="xsd:string"/><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
					<xsd:element name="trunkPadTx" type="xsd:string"/><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
					<xsd:element name="trunkLevel" type="xsd:string"/><!--This field is of the type axl:XTrunkLevel in AXLEnums.xsd-->
					<xsd:element name="yellowAlarm" type="xsd:string"/><!--This field is of the type axl:XYellowAlarm in AXLEnums.xsd-->
					<xsd:element name="zeroSuppression" type="xsd:string"/><!--This field is of the type axl:XZeroSuppression in AXLEnums.xsd-->
					<xsd:element name="nationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="internationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="subscriberPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XPRIGateway">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDigitalGateway">
				<xsd:sequence>
					<xsd:element name="acceptInboundRDNIS" type="xsd:boolean"/>
					<xsd:element name="calledPlan" type="xsd:string"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPri" type="xsd:string"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="callerIDDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
					<xsd:element name="callingPartySelection" type="xsd:string"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
					<xsd:element name="callingPlan" type="xsd:string"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPri" type="xsd:string"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="chanIE" type="xsd:nonNegativeInteger"/>
					<xsd:element name="clockReference" type="xsd:string"/><!--This field is of the type axl:XClockReference in AXLEnums.xsd-->
					<xsd:element name="csuParam" type="xsd:string"/><!--This field is of the type axl:XCSUParam in AXLEnums.xsd-->
					<xsd:element name="dChannelEnable" type="xsd:boolean"/>
					<xsd:element name="direction" type="xsd:boolean"/>
					<xsd:element name="displayIE" type="xsd:boolean"/>
					<xsd:element name="encode" type="xsd:string"/><!--This field is of the type axl:XEncode in AXLEnums.xsd-->
					<xsd:element name="fdlChannel" type="xsd:string"/><!--This field is of the type axl:XFDLChannel in AXLEnums.xsd-->
					<xsd:element name="firstDelay" type="xsd:nonNegativeInteger"/>
					<xsd:element name="interfaceId">
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:extension base="xsd:nonNegativeInteger">
									<xsd:attribute name="present" type="xsd:boolean"/>
								</xsd:extension>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="intraDelay" type="xsd:nonNegativeInteger"/>
					<xsd:element name="mcdnEnable" type="xsd:boolean"/>
					<xsd:element name="numberIE" type="xsd:boolean"/>
					<xsd:element name="numDigits" type="xsd:nonNegativeInteger">
						<xsd:annotation>
							<xsd:documentation>The value of numDigits must be either 0 to 32 or 99.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="passingPrecedenceLevelThroughUUIE" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="prefix" type="xsd:string" minOccurs="0"/>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedPBX" type="xsd:string" nillable="false"/><!--This field is of the type axl:XConnectedPBX in AXLEnums.xsd-->
					<xsd:element name="priProtocol" type="xsd:string"/><!--This field is of the type axl:XPriProtocol in AXLEnums.xsd-->
					<xsd:element name="securityAccessLevel" type="xsd:nonNegativeInteger" minOccurs="0"/>
					<xsd:element name="sendCallingNameInFacilityIE" type="xsd:boolean"/>
					<xsd:element name="sendEXLeadingCharInDispIE" type="xsd:boolean"/>
					<xsd:element name="sendRestart" type="xsd:boolean"/>
					<xsd:element name="setupNonISDNPI" type="xsd:boolean"/>
					<xsd:element name="sigDigits" type="xsd:boolean">
						<xsd:annotation>
							<xsd:documentation>This tag enables the significant digits for the gateway; if the tag is set to true, the value of the 'numDigits' element is used as Significant Digits for the gateway. This tag should have a value of false if numDigits is se...
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="span" type="xsd:nonNegativeInteger"/>
					<xsd:element name="statusPoll" type="xsd:boolean"/>
					<xsd:element name="stripCountOut" type="xsd:nonNegativeInteger"/>
					<xsd:element name="trunkPadRx" type="xsd:string"/><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
					<xsd:element name="trunkPadTx" type="xsd:string"/><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
					<xsd:element name="trunkLevel" type="xsd:string"/><!--This field is of the type axl:XTrunkLevel in AXLEnums.xsd-->
					<xsd:element name="yellowAlarm" type="xsd:string"/><!--This field is of the type axl:XYellowAlarm in AXLEnums.xsd-->
					<xsd:element name="zeroSuppression" type="xsd:string"/><!--This field is of the type axl:XZeroSuppression in AXLEnums.xsd-->
					<xsd:element name="sMDIBasePort" type="xsd:positiveInteger"/>
					<xsd:element name="protocolProfile91NameOnly" type="xsd:boolean"/>
					<xsd:element name="helpURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="nationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="internationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="subscriberPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="ASN1ROSEOIDEncoding" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="QSIGVariant" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XServerDevice">
		<xsd:annotation>
			<xsd:documentation>Server devices are server processes that receive and/or make calls; because they are server-based, they have a process node.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence minOccurs="0">
					<xsd:choice>
						<xsd:element name="processNode" type="axlapi:XProcessNode"/>
						<xsd:element name="processNodeId" type="axlapi:XUUID"/>
						<xsd:element name="processNodeName" type="xsd:Name"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XT1Gateway">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDigitalGateway">
				<xsd:sequence>
					<xsd:element name="clockReference" type="xsd:string"/><!--This field is of the type axl:XClockReference in AXLEnums.xsd-->
					<xsd:element name="csuParam" type="xsd:string"/><!--This field is of the type axl:XCSUParam in AXLEnums.xsd-->
					<xsd:element name="digitSending" type="xsd:string"/><!--This field is of the type axl:XDigitSending in AXLEnums.xsd-->
					<xsd:element name="encode" type="xsd:string"/><!--This field is of the type axl:XEncode in AXLEnums.xsd-->
					<xsd:element name="fdlChannel" type="xsd:string"/><!--This field is of the type axl:XFDLChannel in AXLEnums.xsd-->
					<xsd:element name="maxPorts" type="xsd:positiveInteger">
						<xsd:annotation>
							<xsd:documentation>Read-only.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="ports" type="axlapi:XT1PortList"/>
					<xsd:element name="yellowAlarm" type="xsd:string"/><!--This field is of the type axl:XYellowAlarm in AXLEnums.xsd-->
					<xsd:element name="zeroSuppression" type="xsd:string"/><!--This field is of the type axl:XZeroSuppression in AXLEnums.xsd-->
					<xsd:element name="sMDIBasePort" type="xsd:positiveInteger"/>
					<xsd:element name="handleDTMFPrecedenceSignals" type="xsd:boolean"/>
					<xsd:element name="helpURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XH323Device">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence minOccurs="0">
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="cdpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="packetCaptureMode" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
					<xsd:element name="packetCaptureDuration" type="xsd:nonNegativeInteger" default="60" nillable="true" minOccurs="0"/>
					<xsd:element name="srtpAllowed" type="xsd:boolean" default="false" nillable="true" minOccurs="0"/>
					<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Phones and H323Trunks.Not for H323Gateways.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="subscribeCallingSearchSpace" type="axlapi:XCallingSearchSpace">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="waitForFarEndH245TerminalSet" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="mtpRequired" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="mtpPreferredCodec" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XSIPCodec in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323 Phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callerIdDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="callingPartySelection" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
					<xsd:element name="callingLineIdPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="displayIEDelivery" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="redirectOutboundNumberIE" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="redirectInboundNumberIE" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="enableInboundFaststart" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="enableOutboundFaststart" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If set to True, mediaResourceList must be mentioned and mtpRequired must be set to True.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="codecForOutboundFaststart" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XMediaPayload in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>enableOutboundFaststart must be set to true for it to be read. Not Nillable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XH323Phone">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XH323Device">
				<xsd:sequence minOccurs="0">
					<xsd:element name="hlogStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ownerUserId" type="axlapi:String255" nillable="true" minOccurs="0"/>
					<xsd:element name="signalingPort" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="gatekeeperInfo" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="gatekeeperName" type="axlapi:String50" nillable="false"/>
									<xsd:element name="gatekeeper" type="axlapi:XGatekeeper" nillable="false">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
								</xsd:choice>
								<xsd:element name="e164" type="axlapi:String50" nillable="false"/>
								<xsd:element name="technologyPrefix" type="axlapi:String50" nillable="false"/>
								<xsd:element name="zone" type="axlapi:String50" nillable="false"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="lines" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="line" type="axlapi:XLine" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XH323Gateway">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XH323Device">
				<xsd:sequence minOccurs="0">
					<xsd:element name="AllowH235PassThrough" type="xsd:boolean" default="false" minOccurs="0"/>
					<xsd:element name="tunneledProtocol" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XTunneledProtocol in AXLEnums.xsd-->
					<xsd:element name="ASN1ROSEOIDEncoding" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="QSIGVariant" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for  only PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="nationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="internationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="subscriberPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="significantDigits" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The value of significantDigits  must be either from 0 to 32 or 99. Here 99 means All. enable attribute is Read-Only. If significantDigits is 0-32 then enable is true, if significantDigits is 99 then enable is false.</xsd:doc...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:extension base="xsd:nonNegativeInteger">
									<xsd:attribute name="enable" type="xsd:boolean" use="optional"/>
								</xsd:extension>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="prefixDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="calledPartyIENumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="callingPartyIENumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="calledNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="licensedCapacity" type="xsd:nonNegativeInteger" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The tag will not be applicable for any type of Inter-Cluster trunk</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformNationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformInternationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformSubscriberCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XH323Trunk">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XH323Gateway">
				<xsd:sequence>
					<xsd:element name="pathReplacementSupport" type="xsd:boolean" default="false" minOccurs="0"/>
					<xsd:choice>
						<xsd:element name="gatekeeperInfo">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:choice>
										<xsd:element name="gatekeeperName" type="axlapi:String50" nillable="false"/>
										<xsd:element name="gatekeeper" type="axlapi:XGatekeeper" nillable="false">
											<xsd:annotation>
												<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
											</xsd:annotation>
										</xsd:element>
									</xsd:choice>
									<xsd:element name="terminal" type="xsd:string" nillable="false"/><!--This field is of the type axl:XTerminal in AXLEnums.xsd-->
									<xsd:element name="technologyPrefix" type="axlapi:String50" minOccurs="0"/>
									<xsd:element name="zone" type="axlapi:String50" minOccurs="0"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="remoteServerInfo">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="server1" type="axlapi:String255" nillable="false"/>
									<xsd:element name="server2" type="axlapi:String255" minOccurs="0"/>
									<xsd:element name="server3" type="axlapi:String255" minOccurs="0"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:choice>
					<xsd:sequence minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for Non-Gatekeeper controlled ICT trunk's.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="ictPassingPrecedenceLevelThroughUUIE" type="xsd:boolean" nillable="false" minOccurs="0"/>
						<xsd:element name="ictSecurityAccessLevel" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Should be set only when ictPassingPrecedenceLevelThroughUUIE is set to true.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XSIPTrunk">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence>
					<xsd:choice minOccurs="0">
						<xsd:element name="cdpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="subscribeCallingSearchSpace" type="axlapi:XCallingSearchSpace">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="rerouteCallingSearchSpace" type="axlapi:XCallingSearchSpace">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="rerouteCallingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="referCallingSearchSpace" type="axlapi:XCallingSearchSpace">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="referCallingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="mtpRequired" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="destinationaddress" type="axlapi:String50">
						<xsd:annotation>
							<xsd:documentation>Valid characters for Destination Address are letters, numbers, dashes and dots(periods). IP address should have four 8-bit numbers seperated by periods. Host name should start with letter and end with letter or number.</xsd:...
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="destAddrIsSRV" type="xsd:boolean" default="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is ignored and destAddrIsSRV is set to false if destinationaddress is an IP address and destinationport is mentioned correctly.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="destinationport" type="xsd:integer" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag depends on destAddrIsSRV. It is mandatory when destAddrIsSRV is false or when destination address is an IP address. Valid values between 1024 to 65535 (inclusive)</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="tkSipCodec" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XSIPCodec in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The ampersand is a reserved character in xml. It can be escaped as "&amp;"</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="sigDigits" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The value of sigDigits  must be either from 0 to 32 or 99. Here 99 means All. enable attribute is Read-Only. If sigDigits is 0-32 then enable is true, if sigDigits is 99 then enable is false.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:extension base="xsd:nonNegativeInteger">
									<xsd:attribute name="enable" type="xsd:boolean" use="optional"/>
								</xsd:extension>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="connectedNamePresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedPartyIdPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingPartySelection" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
					<xsd:element name="callingname" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingLineIdPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="prefixDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="callerName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Characters which are not valid for caller name are ampersand, braces, less than or greater than, percentage sign, double quotes, square brackets and pipe.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callerIdDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="acceptInboundRDNIS" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="acceptOutboundRDNIS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="srtpAllowed" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="srtpFallbackAllowed" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only if srtpAllowed is set to false.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isPaiEnabled" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="sipPrivacy" type="axlapi:XSipPrivacy" default="Default" nillable="false" minOccurs="0"/>
					<xsd:element name="isRpidEnabled" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="sipAssertedType" type="axlapi:XSipAssertedType" default="Default" nillable="false" minOccurs="0"/>
					<xsd:element name="licensedCapacity" type="xsd:nonNegativeInteger" default="0" minOccurs="0"/>
					<xsd:element name="destinationAddressIPv6" type="xsd:string" minOccurs="0"/>
					<xsd:element name="DTMFSignalingMethod" type="axlapi:XDTMFSignaling" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XRecordingProfile">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="recordingCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="recordingCSSName" type="axlapi:UniqueName50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="recorderDestination" type="xsd:string" nillable="false"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XGatekeeper">
		<xsd:annotation>
			<xsd:documentation>Gatekeeper is a type of device.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String128" nillable="false">
				<xsd:annotation>
					<xsd:documentation>From device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="axlapi:String128" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>From device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="rrqTimeToLive" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Registration Request Time to Live.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="retryTimeout" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Registration Retry Timeout</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="enableDevice" type="xsd:boolean" nillable="false" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XRemoteDestinationProfile">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation>The device name, using only URL-friendly characters.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Optional description of the device.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>Product/Model/Class block</xsd:documentation>
				</xsd:annotation>
				<xsd:choice>
					<xsd:annotation>
						<xsd:documentation>Product information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
					<xsd:element name="product" type="xsd:string"><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Product ID string.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="productInfo" type="axlapi:XProductInfo">
						<xsd:annotation>
							<xsd:documentation>Complete product information block.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
				<xsd:choice>
					<xsd:annotation>
						<xsd:documentation>Model information is read-only.</xsd:documentation>
					</xsd:annotation>
					<xsd:element name="model" type="xsd:string"><!--This field is of the type axl:XModel in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Model ID string.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="modelInfo" type="axlapi:XModelInfo">
						<xsd:annotation>
							<xsd:documentation>Complete model information block.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
				<xsd:element name="class" type="xsd:string"><!--This field is of the type axl:XClass in AXLEnums.xsd-->
					<xsd:annotation>
						<xsd:documentation>Class ID string. Class information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>Protocol block</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="protocol" type="xsd:string"><!--This field is of the type axl:XDeviceProtocol in AXLEnums.xsd-->
					<xsd:annotation>
						<xsd:documentation>Protocol information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="protocolSide" type="xsd:string"><!--This field is of the type axl:XProtocolSide in AXLEnums.xsd-->
					<xsd:annotation>
						<xsd:documentation>Side information is read-only except when creating a device.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Any device that makes calls has a calling search space.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="devicePool" type="axlapi:XDevicePool">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="xsd:string"/>
			</xsd:choice>
			<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
			<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
			<xsd:element name="lines" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>When adding or updating a remoteDestinationProfile with the AXL API, only use the 'line' element.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:choice>
						<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
						<xsd:element name="lineId" type="axlapi:XLineId" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Do not use when adding or updating a remoteDestinationProfile.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="lineLabel" type="xsd:string" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Do not use when adding or updating a remoteDestinationProfile.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Do not use when adding or updating a remoteDestinationProfile.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="callInfoPrivacyStatus" type="xsd:string" nillable="false"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="userId" type="xsd:string" nillable="false"/>
			<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="rerouteCallingSearchSpace" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="rerouteCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="cgpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="primaryPhone" type="axlapi:XDevice">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="primaryPhoneName" type="axlapi:String128" nillable="false"/>
			</xsd:choice>
			<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="dndStatus" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="mobileSmartClientProfile" type="axlapi:XMobileSmartClientProfile">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="mobileSmartClientProfileName" type="axlapi:String128"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="ctiid" type="xsd:positiveInteger"/>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<!-- *********************************************************** -->
	<!-- Complex Types                                    -->
	<!-- *********************************************************** -->
	<xsd:complexType name="XAARNeighborhood">
		<xsd:annotation>
			<xsd:documentation>An Automated Alternate Routing Neighborhood.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XAddOnModule">
		<xsd:annotation>
			<xsd:documentation>Sidecar modules for used by Cisco IP Phones.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="loadInformation" type="axlapi:XLoadInformation">
				<xsd:annotation>
					<xsd:documentation>Load Information is either the module's specific load information or the default load information.If any special load information is specified, the special attribute is set to TRUE. Otherwise, the load information is the defau...
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="model" type="xsd:string"><!--This field is of the type axl:XModel in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Model ID string.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="index" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XAnalogPortList">
		<xsd:annotation>
			<xsd:documentation>List of analog ports on an analog gateway.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="port" type="axlapi:XAnalogPort" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XAnalogPort">
		<xsd:annotation>
			<xsd:documentation>An analog port on an analog gateway. The portNumber attribute  identifies the ordinal value of the port in the gateway.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="attendantDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
			<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="callerIdDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
			<xsd:element name="callerIdEnable" type="xsd:boolean"/>
			<xsd:element name="callingPartySelection" type="xsd:string"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
			<xsd:element name="digitSending" type="xsd:string"/><!--This field is of the type axl:XDigitSending in AXLEnums.xsd-->
			<xsd:element name="expectedDigits" type="xsd:nonNegativeInteger"/>
			<xsd:element name="finalDigits">
				<xsd:annotation>
					<xsd:documentation>The value for finalDigits must be between 0 to 32. Ignore the significant attribute, it has been depricated and kept only for backward compatibility issue.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:simpleContent>
						<xsd:extension base="xsd:nonNegativeInteger">
							<xsd:attribute name="significant" type="xsd:boolean" use="optional"/>
						</xsd:extension>
					</xsd:simpleContent>
				</xsd:complexType>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>When adding or updating with the AXL API, do not use the lineId element.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="line" type="axlapi:XLine"/>
				<xsd:element name="lineId" type="axlapi:XLineId"/>
			</xsd:choice>
			<xsd:element name="prefixDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
			<xsd:element name="presentationBit" type="xsd:string"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
			<xsd:element name="silenceSuppressionThreshold" type="xsd:string"/><!--This field is of the type axl:XSilenceSuppressionThreshold in AXLEnums.xsd-->
			<xsd:element name="smdiPortNumber" type="xsd:nonNegativeInteger">
				<xsd:annotation>
					<xsd:documentation>Not used by T1 Ports.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="startDialProtocol" type="axlapi:XStartDialProtocol"/>
			<xsd:element name="timers">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="timer" type="xsd:nonNegativeInteger" maxOccurs="6"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="trunk" type="xsd:string"/><!--This field is of the type axl:XTrunk in AXLEnums.xsd-->
			<xsd:element name="trunkDirection" type="xsd:string"/><!--This field is of the type axl:XTrunkDirection in AXLEnums.xsd-->
			<xsd:element name="trunkLevel" type="xsd:string"/><!--This field is of the type axl:XTrunkLevel in AXLEnums.xsd-->
			<xsd:element name="trunkPadRx" type="xsd:string"/><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
			<xsd:element name="trunkPadTx" type="xsd:string"/><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Arbitrary XML defined by 3rd party vendors.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="portNumber" type="xsd:positiveInteger" use="required"/>
	</xsd:complexType>
	<xsd:complexType name="XButton">
		<xsd:annotation>
			<xsd:documentation>A button on a phone template.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="feature" type="xsd:string"><!--This field is of the type axl:XFeature in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>The feature invoked by this button.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="label" type="axlapi:String50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The label to display for this button.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="buttonNumber" type="xsd:positiveInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XCallForwardInfo">
		<xsd:sequence>
			<xsd:element name="forwardToVoiceMail" type="xsd:boolean" default="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>DB: Derived from CF*VoiceMailEnabled fields. This tag has been marked as ReadOnly for callForwardAlternateParty as it is not applicable for callForwardAlternateParty setting.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is applicable only for callForwardAll.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="secondaryCallingSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="secondaryCallingSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="destination" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="duration" type="xsd:int" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Applicable only for callForwardNoAnswer and callForwardAlternateParty,Value "-1" in the response indicates that the CM will use the default setting</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XHuntForwardInfo">
		<xsd:sequence>
			<xsd:element name="usePersonalPreferences" type="xsd:boolean" default="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Use original Called DN forward no-coverage settings</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="destination" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="maxHuntduration" type="xsd:integer" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Value "-1" in the response means no value has been assigned and internally the CM will use default setting i.e., 1800s.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XCallingSearchSpace">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:UniqueName50"/>
			<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="clause" type="axlapi:String1024" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XCallingSearchSpaceMember" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="partitionUsage" type="axlapi:XPartitionUsage" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XCallingSearchSpaceMember">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="routePartition" type="axlapi:XRoutePartition">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="routePartitionId" type="axlapi:XUUID">
					<xsd:annotation>
						<xsd:documentation>DEPRECATED: use routePartition/uuid</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="routePartitionName" type="axlapi:String50"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="index" type="xsd:positiveInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XCallerFilterListMember">
		<xsd:sequence minOccurs="0">
			<xsd:element name="dnMask" type="axlapi:String50"/>
			<xsd:element name="callerFilterMask" type="axlapi:XCallerFilterMask" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XCallerFilterList">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50" nillable="false"/>
			<xsd:element name="description" type="axlapi:String128" nillable="true" minOccurs="0"/>
			<xsd:element name="isAllowedType" type="xsd:boolean"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="endUser" type="axlapi:XUUID"/>
				<xsd:element name="endUserIdName" type="axlapi:UniqueName50"/>
			</xsd:choice>
			<xsd:element name="members" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XCallerFilterListMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XCallManager">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50">
				<xsd:annotation>
					<xsd:documentation>Read-only. name is now autogenerated.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="autoRegistration" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="startDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
						<xsd:element name="endDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
						<xsd:element name="nextDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
						<xsd:choice minOccurs="0">
							<xsd:element name="routePartition" type="axlapi:XRoutePartition">
								<xsd:annotation>
									<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="routePartitionName" type="axlapi:String50"/>
						</xsd:choice>
						<xsd:element name="e164Mask" type="axlapi:String50" minOccurs="0"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="ports">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="ethernetPhonePort" type="xsd:nonNegativeInteger"/>
						<xsd:element name="mgcpPorts">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="listen" type="xsd:nonNegativeInteger">
										<xsd:annotation>
											<xsd:documentation>UDP port for MGCP communication.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="keepAlive" type="xsd:nonNegativeInteger">
										<xsd:annotation>
											<xsd:documentation>TCP port for backhaul for Q.931 messages.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="processNode" type="axlapi:XProcessNode">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="processNodeName" type="axlapi:String255"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="ctiid" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XCallManagerGroup">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="tftpDefault" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Only use when setting TFTP Default to true.  Setting to true will result in setting all other CallManager groups to false. </xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XCallManagerMember" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute of callManager is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XCallManagerMember">
		<xsd:choice>
			<xsd:element name="callManager" type="axlapi:XCallManager">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="callManagerName" type="axlapi:String50"/>
		</xsd:choice>
		<xsd:attribute name="priority" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XCMCInfo">
		<xsd:sequence minOccurs="0">
			<xsd:element name="code" type="axlapi:String16"/>
			<xsd:element name="description" type="axlapi:String50" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XCallManagerMemberId">
		<xsd:simpleContent>
			<xsd:extension base="axlapi:XUUID">
				<xsd:attribute name="priority" type="xsd:nonNegativeInteger"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>
	<xsd:complexType name="XCCMVersion">
		<xsd:sequence>
			<xsd:element name="version" type="axlapi:String50"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XCredentialPolicy">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:String255"/>
			<xsd:element name="noLimitForFailedLogon" type="xsd:boolean" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If this tag is set to true, zero is inserted into the database for failedLogon.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="failedLogon" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Failed logon must be a number in the range 0 to 100.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="resetFailedLogonAttempts" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Reset Failed logon attempts must be a number in the range 1 to 120.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="administratorMustUnlock" type="xsd:boolean" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If this tag is set to true, zero is inserted into the database for lockoutDuration.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="lockoutDuration" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Lockout duration must be a number in the range 0 to 1440.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="credChangeDuration" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Credential change duration must be a number in the range 0 to 129600.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="neverExpires" type="xsd:boolean" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If this tag is set to true, zero is inserted into the database for credExpiresAfter.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="credExpiresAfter" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Credential expires after must be a number in the range 0 to 365.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="minCredLength" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Minimum credential length must be a number in the range 0 to 64.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="prevCredStoredNum" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Stored number of previous credentials must be a number in the range 0 to 25.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="inactiveDaysAllowed" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Inactive days allowed must be a number in the range 0 to 5000.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="expiryWarningDays" type="xsd:nonNegativeInteger" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Expiry warning days must be a number in the range 0 to 90.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="trivialCredCheck" type="xsd:boolean" nillable="false"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XDateTimeSetting">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="dateTemplate" type="axlapi:String50"/>
			<xsd:element name="timeZone" type="xsd:string"/><!--This field is of the type axl:XTimeZone in AXLEnums.xsd-->
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDevicePool">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:UniqueString50">
				<xsd:annotation>
					<xsd:documentation>Not nullable.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="autoSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="autoSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="dateTimeSetting" type="axlapi:XDateTimeSetting">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. Not Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dateTimeSettingName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. Not nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callManagerGroupName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>uuid will be returned in get Response.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="mediaResourceList" type="axlapi:XMediaResourceList">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="mediaResourceListName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="region" type="axlapi:XRegion">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="regionName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="networkLocale" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Nullable. The value accepted and retrieved from the database for this field will be of type XCountry in AXLEnums.xsd</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="srstInfo" type="axlapi:XSRSTInfo"/>
				<xsd:element name="srstName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="connectionMonitorDuration" type="xsd:int" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>-1 means using system default</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="automatedAlternateRoutingCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The calling search space used by Automated Alternate Routing. Nullable. Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50" nillable="true">
					<xsd:annotation>
						<xsd:documentation>name of the calling search space used by Automated Alternate Routing.  Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="aarNeighborhood" type="axlapi:XAARNeighborhood" nillable="true">
					<xsd:annotation>
						<xsd:documentation>For IP Phones and Gateways. Nullable. Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="aarNeighborhoodName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="location" type="axlapi:XLocation" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="mobilityCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The calling search space used by Device Mobility. Nullable. Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="mobilityCSSName" type="axlapi:String50" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The name of the calling search space used by Device Mobility.  Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="physicalLocation" type="axlapi:XPhysicalLocation" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="physicalLocationName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="deviceMobilityGroup" type="axlapi:XDeviceMobilityGroup" nillable="true">
					<xsd:annotation>
						<xsd:documentation>the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="deviceMobilityGroupName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="revertPriority" type="axlapi:XRevertPriority" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The value accepted and retrieved from the database for this field will be of type XRevertPriority in AXLEnums.xsd.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="singleButtonBarge" type="axlapi:XBarge" default="Off" nillable="false" minOccurs="0"/>
			<xsd:element name="joinAcrossLines" type="xsd:string" default="Off" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:choice minOccurs="0">
				<xsd:element name="cgpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="cdpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="localRouteGroup" type="axlapi:XRouteGroup" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="localRouteGroupName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="nationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
			<xsd:element name="internationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
			<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
			<xsd:element name="subscriberPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
					<xsd:annotation>
						<xsd:documentation>Only uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="geoLocationName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter">
					<xsd:annotation>
						<xsd:documentation>Only uuid attribute is read by the AXL API</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="geoLocationFilterName"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
				<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
				<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
				<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
				<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
			<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
			<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
			<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XCommonDeviceConfig">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:UniqueString50" nillable="false"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="softkeyTemplate" type="axlapi:XSoftkeyTemplate" nillable="true">
					<xsd:annotation>
						<xsd:documentation>only the uuid attribute is read by the AXL API. Nullable</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="softkeyTemplateName" type="xsd:string" nillable="true"/>
			</xsd:choice>
			<xsd:element name="userLocale" type="xsd:string" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Nullable. The value accepted and retrieved from the database for this field will be of type XUserLocale in AXLEnums.xsd.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Nullable</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Nullable</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This setting only affect devices that support MLPP</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>This setting only affect devices that support MLPP</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Off" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Default is not applicable for CommonDeviceConfig API</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>This setting only affect devices that support MLPP</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="IPAddressingMode" type="axlapi:XIPAddressingMode" minOccurs="0"/>
			<xsd:element name="IPAddressingModePreferenceControl" type="axlapi:XIPAddressingModePrefControl" minOccurs="0"/>
			<xsd:element name="allowAutoConfigurationForPhones" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XCommonPhoneConfig">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:UniqueString50" nillable="false"/>
			<xsd:element name="description" type="axlapi:String128" nillable="false" minOccurs="0"/>
			<xsd:element name="unlockPwd" type="axlapi:String50" nillable="false" minOccurs="0"/>
			<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0"/>
			<xsd:element name="dndAlertingType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
			<xsd:element name="backgroundImage" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
			<xsd:element name="phonePersonalization" type="axlapi:XPhonePersonalization" nillable="false" minOccurs="0"/>
			<xsd:element name="phoneServiceDisplay" type="axlapi:XPhoneServiceDisplay" nillable="false" minOccurs="0"/>
			<xsd:element name="sshUserId" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="sshPwd" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XDevicePoolDeviceMobility">
		<xsd:choice>
			<xsd:element name="devicePool" type="axlapi:XDevicePool">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="devicePoolName">
				<xsd:complexType>
					<xsd:simpleContent>
						<xsd:extension base="axlapi:String50">
							<xsd:attribute name="uuid" type="axlapi:XUUID"/>
						</xsd:extension>
					</xsd:simpleContent>
				</xsd:complexType>
			</xsd:element>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDeviceMobility">
		<xsd:sequence>
			<xsd:element name="name" type="xsd:string" nillable="false"/>
			<xsd:element name="subNet" type="xsd:string" nillable="false"/>
			<xsd:element name="subNetMaskSz" type="xsd:nonNegativeInteger" nillable="false"/>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XDevicePoolDeviceMobility" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XPhysicalLocation">
		<xsd:sequence>
			<xsd:element name="name" type="xsd:string" nillable="false"/>
			<xsd:element name="description" type="xsd:string" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDeviceMobilityGroup">
		<xsd:sequence>
			<xsd:element name="name" type="xsd:string" nillable="false"/>
			<xsd:element name="description" type="xsd:string" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDHCPServer">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="processNode" type="axlapi:XProcessNode"/>
				<xsd:element name="processNodeName" type="axlapi:String128"/>
			</xsd:choice>
			<xsd:element name="primaryDNSipAddress" type="xsd:string" minOccurs="0"/>
			<xsd:element name="secondaryDNSipAddress" type="xsd:string" minOccurs="0"/>
			<xsd:element name="primaryTFTPServeripAddress" type="xsd:string" minOccurs="0"/>
			<xsd:element name="secondaryTFTPServeripAddress" type="xsd:string" minOccurs="0"/>
			<xsd:element name="bootstrapServeripAddress" type="xsd:string" minOccurs="0"/>
			<xsd:element name="domainName" type="xsd:string" minOccurs="0"/>
			<xsd:element name="tftpServerName" type="xsd:string" minOccurs="0"/>
			<xsd:element name="arpCacheTimeout" type="xsd:nonNegativeInteger" default="0">
				<xsd:annotation>
					<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="ipAddressLeaseTime" type="xsd:nonNegativeInteger" default="0">
				<xsd:annotation>
					<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="renewalTime" type="xsd:nonNegativeInteger" default="0">
				<xsd:annotation>
					<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="rebindingTime" type="xsd:nonNegativeInteger" default="0">
				<xsd:annotation>
					<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XDHCPSubnet">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:annotation>
					<xsd:documentation>Each DHCPSubnet is associated with a unique DHCP Server.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="dhcpServer" type="axlapi:XDHCPServer">
					<xsd:annotation>
						<xsd:documentation>only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dhcpServerName" type="xsd:string"/>
			</xsd:choice>
			<xsd:element name="subnetIPAddress" type="xsd:string"/>
			<xsd:element name="primaryStartIPAddress" type="xsd:string"/>
			<xsd:element name="primaryEndIPAddress" type="xsd:string"/>
			<xsd:element name="secondaryStartIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="secondaryEndIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="primaryRouterIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="secondaryRouterIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="subnetMask" type="xsd:string"/>
			<xsd:element name="domainName" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="primaryDNSIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="secondaryDNSIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="tftpServerName" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="primaryTFTPServerIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="secondaryTFTPServerIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="bootstrapServerIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="arpCacheTimeout" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="ipAddressLeaseTime" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="renewalTime" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="rebindingTime" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDialPlan">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDialPlanTag">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50">
				<xsd:annotation>
					<xsd:documentation>Actually called "tag" in database.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="dialPlan" type="axlapi:XDialPlan"/>
				<xsd:element name="dialPlanName" type="xsd:string"/>
			</xsd:choice>
			<xsd:element name="operator" type="axlapi:XOperator"/>
			<xsd:element name="suppressFromRouteFilter" type="xsd:boolean" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDigitDiscardInstruction">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="clause" type="axlapi:String1024" minOccurs="0"/>
			<xsd:choice>
				<xsd:element name="dialPlan" type="axlapi:XDialPlan">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dialPlanName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="digitAnalysisId" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XDigitDiscardInstructionMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDigitDiscardInstructionMember">
		<xsd:choice>
			<xsd:element name="dialPlanTagName" type="axlapi:String50" nillable="false"/>
			<xsd:element name="dialPlanTag" type="axlapi:XDialPlanTag">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XDisplayInstance">
		<xsd:sequence>
			<xsd:element name="name">
				<xsd:annotation>
					<xsd:documentation>The URI of this instance. For example: xmldi://cisco.com/Cisco VG200/mgcp</xsd:documentation>
				</xsd:annotation>
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:pattern value="xmldi://\S+"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="version" type="xsd:string"/>
			<xsd:element name="author" type="xsd:string" minOccurs="0"/>
			<xsd:element name="description" type="xsd:string" minOccurs="0"/>
			<xsd:choice>
				<xsd:annotation>
					<xsd:documentation>At this point, you will either see a uses element optional followed by a parameters block, or simply a parameters block.</xsd:documentation>
				</xsd:annotation>
				<xsd:sequence>
					<xsd:element name="uses" type="xsd:anyURI">
						<xsd:annotation>
							<xsd:documentation>Name of the display instance this display instance extends or includes.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="parameters" type="axlapi:XDisplayInstanceParameters" minOccurs="0"/>
				</xsd:sequence>
				<xsd:element name="parameters" type="axlapi:XDisplayInstanceParameters"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XDisplayInstanceParameter">
		<xsd:sequence>
			<xsd:element name="name">
				<xsd:annotation>
					<xsd:documentation>The tag that appears in the actual vendor configuration block stored in the database. The pattern enforces that the name is only made up of letters, digits, dashes, periods, or underscores.</xsd:documentation>
				</xsd:annotation>
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:pattern value="[a-zA-Z0-9][a-zA-Z0-9\.\-_]*"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="description" type="xsd:string"/>
			<xsd:element name="moduleComponentName" type="xsd:string" minOccurs="0"/>
			<xsd:element name="nonClusterWideJustification" type="xsd:string" minOccurs="0"/>
			<xsd:element name="displayName" type="xsd:normalizedString" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If displayName is set, the UI should show it instead of the NAME to the user.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="onChangeShowMessage" type="xsd:string" minOccurs="0"/>
			<xsd:element name="unit" type="xsd:string" minOccurs="0"/>
			<xsd:element name="hidden" type="xsd:boolean" fixed="true" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>UI directive. This parameter should not be shown in the UI.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="index" type="xsd:nonNegativeInteger" default="0" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Index is translated into an index attribute in the parameter expressed in a vendor config. Really only useful for parameters contained within paramGroups.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="readOnly" type="xsd:boolean" fixed="true" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>UI directive. The parameter is entirely read-only. Whatever value is current assigned to the parameter is never changed in the UI.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="label" type="xsd:string">
					<xsd:annotation>
						<xsd:documentation>UI directive. Text to always display in the UI.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="paramGroup">
					<xsd:annotation>
						<xsd:documentation>UI directive. The parameter is really just a heading for a paramGroup.</xsd:documentation>
					</xsd:annotation>
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="param" type="axlapi:XDisplayInstanceParameter" maxOccurs="unbounded"/>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="rules">
					<xsd:annotation>
						<xsd:documentation>The rules to validate this parameter against.</xsd:documentation>
					</xsd:annotation>
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="rule" type="xsd:anyURI" maxOccurs="unbounded">
								<xsd:annotation>
									<xsd:documentation>The URI of the rule to validate this parameter against; for example: xmlrule://cisco.com/public/isAnInteger</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XDisplayInstanceParameters">
		<xsd:sequence>
			<xsd:element name="param" type="axlapi:XDisplayInstanceParameter" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XFACInfo">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="code" type="axlapi:String16"/>
			<xsd:element name="authorizationLevel" type="xsd:nonNegativeInteger"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XLicenseCapabilities">
		<xsd:sequence>
			<xsd:element name="userid" type="xsd:string"/>
			<xsd:element name="enableUPS" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The only valid values for enableUPS are true, True, false and False.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="enableUPC" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The only valid values for enableUPC are true, True, false and False.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XLine">
		<xsd:annotation>
			<xsd:documentation>Table: A Line Appearnce (defined from DeviceNumPlanMap).</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="label" type="axlapi:String50" nillable="true"/>
			<xsd:element name="asciiLabel" type="axlapi:String50" nillable="true" minOccurs="0"/>
			<xsd:element name="display" type="axlapi:String50" nillable="true"/>
			<xsd:choice>
				<xsd:element name="dirn" type="axlapi:XNPDirectoryNumber">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="ringSetting" type="xsd:string" default="Ring" nillable="false" minOccurs="0"/><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
			<xsd:element name="consecutiveRingSetting" type="xsd:string" default="Use System Default" nillable="false" minOccurs="0"><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Consecutive Rings Setting. Replaces the consective ring setting on IPPhone.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="ringSettingIdlePickupAlert" type="xsd:string" default="Use System Default" nillable="false" minOccurs="0"><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Applicable only for IP Phones.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="ringSettingActivePickupAlert" type="xsd:string" default="Use System Default" nillable="false" minOccurs="0"><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Applicable only for IP Phones.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="displayASCII" type="axlapi:String50" nillable="true" minOccurs="0"/>
			<xsd:element name="e164Mask" type="axlapi:String255" nillable="true" minOccurs="0"/>
			<xsd:element name="dialPlanWizardId" type="xsd:nonNegativeInteger" minOccurs="0"/>
			<xsd:element name="mwlPolicy" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XMWLPolicy in AXLEnums.xsd-->
			<xsd:element name="maxNumCalls" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
			<xsd:element name="busyTrigger" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
			<xsd:element name="callInfoDisplay">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="callerName" type="xsd:boolean" default="true" minOccurs="0"/>
						<xsd:element name="callerNumber" type="xsd:boolean" default="false" minOccurs="0"/>
						<xsd:element name="redirectedNumber" type="xsd:boolean" default="false" minOccurs="0"/>
						<xsd:element name="dialedNumber" type="xsd:boolean" default="true" minOccurs="0"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="recordingProfile" type="axlapi:XRecordingProfile">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="recordingProfileName" type="axlapi:UniqueString50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="monitoringCSS" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="monitoringCSSName" type="axlapi:UniqueName50"/>
			</xsd:choice>
			<xsd:element name="recordingFlag" type="axlapi:XRecordingFlag" nillable="true" minOccurs="0"/>
			<xsd:element name="audibleMWI" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="speedDial" type="xsd:string" minOccurs="0"/>
			<xsd:element name="partitionUsage" type="axlapi:XPartitionUsage" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag cannot be modified. It can only be specified in the add request.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="associatedEndusers" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="enduser" type="axlapi:XEnduserMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="partyEntranceTone" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="missedCallLogging" type="xsd:boolean" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="index" type="xsd:positiveInteger">
			<xsd:annotation>
				<xsd:documentation>Indicates the cardinality of the line. Refer to DeviceNumPlanMap.NumPlanIndex.</xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="ctiid" type="xsd:nonNegativeInteger">
			<xsd:annotation>
				<xsd:documentation>Unique, cannot be null.</xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>
	<xsd:complexType name="XEnduserMember">
		<xsd:sequence>
			<xsd:element name="userId" type="xsd:string"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XLineId">
		<xsd:annotation>
			<xsd:documentation>XLineId is used by XDevice as a shorthand notation (uuid + index and ctiid attributes).</xsd:documentation>
		</xsd:annotation>
		<xsd:simpleContent>
			<xsd:extension base="axlapi:XUUID">
				<xsd:attribute name="index" type="xsd:nonNegativeInteger"/>
				<xsd:attribute name="ctiid" type="xsd:nonNegativeInteger"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>
	<xsd:complexType name="XLoadInformation">
		<xsd:simpleContent>
			<xsd:extension base="axlapi:String255">
				<xsd:attribute name="special" type="xsd:boolean"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>
	<xsd:complexType name="XPolicyRelationship">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="geoLocationPolicyA" type="axlapi:XGeoLocationPolicy">
					<xsd:annotation>
						<xsd:documentation>This is a read only tag.  The value will be the currently added GeoLocationPolicy pkid.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="geoLocationPolicyAName"/>
			</xsd:choice>
			<xsd:element name="geoLocationDeviceA" type="axlapi:XGeoLocationDevice"/>
			<xsd:choice>
				<xsd:element name="geoLocationPolicyB" type="axlapi:XGeoLocationPolicy"/>
				<xsd:element name="geoLocationPolicyBName"/>
			</xsd:choice>
			<xsd:element name="geoLocationDeviceB" type="axlapi:XGeoLocationDevice"/>
			<xsd:element name="logicalPartitionPolicy" type="axlapi:XLogicalPartitionPolicy"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XGeoLocation">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="country" type="xsd:string" minOccurs="0"/>
			<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="nationalSubDivision" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="district" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="communityName" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="cityDivision" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="neighbourhood" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="street" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="leadingStreetDirection" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="trailingStreetSuffix" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="streetSuffix" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="houseNumber" type="axlapi:String16" minOccurs="0"/>
			<xsd:element name="houseNumberSuffix" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="landmark" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="location" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="floor" type="axlapi:String16" minOccurs="0"/>
			<xsd:element name="occupantName" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="postalCode" type="axlapi:String100" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XGeoLocationPolicy">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="country" type="xsd:string" minOccurs="0"/>
			<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="nationalSubDivision" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="district" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="communityName" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="cityDivision" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="neighbourhood" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="street" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="leadingStreetDirection" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="trailingStreetSuffix" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="streetSuffix" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="houseNumber" type="axlapi:String16" minOccurs="0"/>
			<xsd:element name="houseNumberSuffix" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="landmark" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="location" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="floor" type="axlapi:String16" minOccurs="0"/>
			<xsd:element name="occupantName" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="postalCode" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="relatedPolicies" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="relatedPolicy" type="axlapi:XPolicyRelationship" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XGeoLocationFilter">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="useCountry" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useNationalSubDivision" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useDistrict" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useCommunityName" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useCityDivision" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useNeighbourhood" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useStreet" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useLeadingStreetDirection" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useTrailingStreetSuffix" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useStreetSuffix" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useHouseNumber" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useHouseNumberSuffix" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useLandmark" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useLocation" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useFloor" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="useOccupantName" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="usePostalCode" type="xsd:boolean" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XLocation">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="id" type="xsd:int">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="kbits" type="xsd:nonNegativeInteger"/>
			<xsd:element name="videoKbits" type="xsd:nonNegativeInteger" nillable="false"/>
			<xsd:element name="relatedLocations" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="relatedLocation" type="axlapi:XLocationRelationship" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XLocationRelationship">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="location" type="axlapi:XLocation">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="rsvpSetting" type="axlapi:XMatrixValue"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XMediaResourceGroupMember">
		<xsd:choice>
			<xsd:element name="device" type="axlapi:XDevice">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="deviceName" type="axlapi:String50" nillable="false"/>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XMediaResourceGroup">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="multicast" type="xsd:boolean"/>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XMediaResourceGroupMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XMediaResourceList">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="clause" type="axlapi:String1024" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XMediaResourceListMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XMediaResourceListMember">
		<xsd:choice>
			<xsd:element name="mediaResourceGroup" type="axlapi:XMediaResourceGroup">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="mediaResourceGroupName" type="axlapi:String50"/>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="order" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XMGCP">
		<xsd:annotation>
			<xsd:documentation>The generic MGCP follows the IOS Model, but uses more generic terminology to describe the MGCP's structure.

All MGCPs have 1..n UNITs, each which contains 1..n SUBUNITs, each which contains 1..n ENDPOINTs.  ENDPOINTs are (really, contain) a DEVICE.

In the IOS model, the terminology would be SLOTs, VICs, and PORTs.  </xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="domainName" type="axlapi:String64"/>
			<xsd:element name="description" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
			<xsd:element name="model" type="xsd:string"><!--This field is of the type axl:XModel in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callManagerGroupName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="units" type="axlapi:XMGCPUnits" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The units element is optional when a new MGCP is being added  and can be added using addMGCPUnit.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="scratch" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0"/>
			<xsd:element name="versionStamp" type="axlapi:String128" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>UUID that is changed each time the MGCP is updated.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="loadInformation" type="axlapi:XLoadInformation">
				<xsd:annotation>
					<xsd:documentation>For devices with load information, if any special load information is specified, the special attribute is set to TRUE. Otherwise, the load information is the default for the product.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XMGCPEndpoints">
		<xsd:annotation>
			<xsd:documentation>The max attribute identifies the maximum number of endpoints this endpoint list is allowed.       </xsd:documentation>
		</xsd:annotation>
		<xsd:choice>
			<xsd:element name="endpoint" maxOccurs="unbounded">
				<xsd:complexType>
					<xsd:complexContent>
						<xsd:extension base="axlapi:XGateway">
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:extension>
					</xsd:complexContent>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="deviceName" type="axlapi:String50" maxOccurs="unbounded">
				<xsd:annotation>
					<xsd:documentation>When adding endpoint, only endpoint is allowed</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:choice>
		<xsd:attribute name="max" type="xsd:positiveInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XMGCPEndpoint">
		<xsd:annotation>
			<xsd:documentation>In the IOS model, ENDPOINT corresponds to a PORT inside a VIC.           </xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XDevice">
				<xsd:sequence>
					<xsd:choice minOccurs="0">
						<xsd:element name="cdpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="packetCaptureMode" type="xsd:string" default="None" minOccurs="0"><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Supported only by a few MGCP gateways like 26XX, 366X, 37XX, 269X, 38XX, VG224.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="packetCaptureDuration" type="xsd:positiveInteger" default="60" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Supported only by a few MGCP gateways like 26XX, 366X, 37XX, 269X, 38XX, VG224.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="priProtocol" type="xsd:string"/><!--This field is of the type axl:XPriProtocol in AXLEnums.xsd-->
					<xsd:element name="ASN1ROSEOIDEncoding" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="QSIGVariant" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="unknownstripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformNationalCSS" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformInternationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformSubscriberCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XMGCPSubunits">
		<xsd:annotation>
			<xsd:documentation>The max attribute identifies the maximum number of subunits this subunit list is allowed.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="subunit" type="axlapi:XMGCPSubunit" maxOccurs="unbounded"/>
		</xsd:sequence>
		<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XMGCPSubunit">
		<xsd:annotation>
			<xsd:documentation>In the IOS model, SUBUNIT corresponds to a VIC, and a VIC contains 1 or more PORTs.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XMGCPVic in AXLEnums.xsd-->
			<xsd:element name="beginPort" type="xsd:nonNegativeInteger" minOccurs="0"/>
			<xsd:element name="endpoints" type="axlapi:XMGCPEndpoints" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="index" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XMGCPUnits">
		<xsd:annotation>
			<xsd:documentation>The max attribute identifies the maximum number of units this unit list is allowed.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="unit" type="axlapi:XMGCPUnit" maxOccurs="unbounded"/>
		</xsd:sequence>
		<xsd:attribute name="max" type="xsd:positiveInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XMGCPUnit">
		<xsd:annotation>
			<xsd:documentation>In the IOS model, UNIT corresponds to a SLOT (Slot Module), and a SLOT contains 1 or more VICs.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XMGCPSlotModule in AXLEnums.xsd-->
			<xsd:element name="subunits" type="axlapi:XMGCPSubunits" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="index" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XModelInfo">
		<xsd:sequence>
			<xsd:element name="class" type="xsd:string"/><!--This field is of the type axl:XClass in AXLEnums.xsd-->
			<xsd:element name="defaultDTMFCapability" type="xsd:nonNegativeInteger" minOccurs="0"/>
			<xsd:element name="features" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="feature" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/><!--This field is of the type axl:XFeature in AXLEnums.xsd-->
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="hasFirmwardLoad" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="hasPhoneTemplate" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="numberOfButtons" type="xsd:nonNegativeInteger" minOccurs="0"/>
			<xsd:element name="phoneTemplateIsUserModifiable" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="showInDeviceDefaults" type="xsd:boolean" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="name" type="xsd:string"/><!--This field is of the type axl:XModel in AXLEnums.xsd-->
	</xsd:complexType>
	<xsd:complexType name="XMOHAudioSource">
		<xsd:sequence minOccurs="0">
			<xsd:element name="sourceId" type="axlapi:XMOHAudioSourceId" nillable="false"/>
			<xsd:element name="name" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="sourceFile" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="multicast" type="xsd:boolean" nillable="false"/>
			<xsd:element name="repeat" type="xsd:boolean" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XMobileVoiceAccess">
		<xsd:sequence>
			<xsd:element name="pattern" type="xsd:string" nillable="false"/>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Default Partition would be Null in case not specified.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="routePartition" type="axlapi:XRoutePartition">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="routePartitionName" type="axlapi:UniqueName50"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XIVRUserLocale">
		<xsd:sequence>
			<xsd:element name="userLocale" type="xsd:string" nillable="false"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
			<xsd:element name="orderIndex" type="xsd:integer" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XMobility">
		<xsd:sequence>
			<xsd:element name="handoffNumber">
				<xsd:complexType>
					<xsd:simpleContent>
						<xsd:extension base="xsd:string">
							<xsd:attribute name="uuid" type="axlapi:XUUID"/>
						</xsd:extension>
					</xsd:simpleContent>
				</xsd:complexType>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Default Partition would be Null in case not specified.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="handoffPartition" type="axlapi:XRoutePartition">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="handoffPartitionName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="DTMFNumber">
				<xsd:complexType>
					<xsd:simpleContent>
						<xsd:extension base="xsd:string">
							<xsd:attribute name="uuid" type="axlapi:XUUID"/>
						</xsd:extension>
					</xsd:simpleContent>
				</xsd:complexType>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Default Partition would be Null in case not specified.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="DTMFPartition" type="axlapi:XRoutePartition">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="DTMFPartitionName" type="axlapi:String50"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XName">
		<xsd:simpleContent>
			<xsd:extension base="xsd:string">
				<xsd:attribute name="uuid" type="axlapi:XUUID"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>
	<xsd:complexType name="XNPMeetMe">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:element name="minimumSecurityLevel" type="axlapi:XDeviceSecurityMode" default="Non Secure" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XMOHServer">
		<xsd:sequence minOccurs="0">
			<xsd:element name="mohServerName" type="axlapi:UniqueName128" nillable="false"/>
			<xsd:element name="description" type="axlapi:String100" nillable="true" minOccurs="0"/>
			<xsd:choice>
				<xsd:element name="processNode" type="axlapi:XProcessNode" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="processNodeName" type="axlapi:String100" nillable="false"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="devicePool" type="axlapi:XDevicePool" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="axlapi:String100" nillable="false"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="location" type="axlapi:XLocation" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String100" nillable="true"/>
			</xsd:choice>
			<xsd:element name="maxUnicastConnections" type="xsd:unsignedLong" default="250" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Maximum Half Duplex Streams must be a number in the range 0 to 500. </xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="maxMulticastConnections" type="xsd:unsignedLong" default="30" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Maximum Multicast Connections must be a number in the range 0 to 999999.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="fixedAudioSourceDevice" type="axlapi:String100" nillable="true" minOccurs="0"/>
			<xsd:element name="runFlag" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
			<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>If isMultiCastEnabled is false then these elements are not necessary.MOHServer will be added to the database without the values of  these tags. ie. The table MOHServerMulticastInfo table will be empty.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="isMultiCastEnabled" type="xsd:boolean" nillable="false" minOccurs="0"/>
				<xsd:element name="baseMulticastIPaddress" type="xsd:string" default="239.1.1.1" nillable="false" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>baseMulticastIPAddress and baseMulticastPort must be a unique pair. All Multicast IP Addresses must be in the range 239.1.1.1  to 239.255.255.255</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="baseMulticastPort" type="xsd:unsignedLong" default="16384" nillable="false" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Multicast Base Port number must be an even number in the range 16384 to 32766</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="multicastIncrementOnIP" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
				<xsd:element name="audioSources" minOccurs="0">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="audioSource" minOccurs="0" maxOccurs="unbounded">
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="sourceId" type="xsd:unsignedLong" nillable="false"/>
										<xsd:element name="maxHops" type="xsd:unsignedLong" default="2" nillable="false" minOccurs="0"/>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:sequence>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XNumPlan" abstract="true">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:annotation>
				<xsd:documentation>When adding a NumPlan with the AXL API, this sequence is required.</xsd:documentation>
			</xsd:annotation>
			<xsd:element name="pattern" type="xsd:string"/>
			<xsd:element name="description" type="xsd:string" minOccurs="0"/>
			<xsd:element name="usage" type="xsd:string"><!--This field is of the type axl:XPatternUsage in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>For Intercom DN and Intercom Translation patterns the usage tag value needs to be specified explicitly as Device Intercom and Translation Intercom respectively. For all other patterns it is a Read-only tag.</xsd:documentation>...
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Default Partition would be Null in case not specified.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="routePartition" type="axlapi:XRoutePartition">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="routePartitionName" type="axlapi:UniqueName50"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XNumplanIdentifier">
		<xsd:annotation>
			<xsd:documentation>Shorthand object to uniquely identify a Numplan entry by directory number (dn) and paritiion name.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="directoryNumber" type="axlapi:XDirectoryNumber"/>
			<xsd:element name="routePartitionName" type="xsd:string"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XNPPattern" abstract="true">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:element name="blockEnable" type="xsd:boolean"/>
					<xsd:element name="calledPartyTransformationMask" type="xsd:string"/>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>dialPlan is mandatory for patterns with @ in it.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlan" type="axlapi:XDialPlan">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialPlanName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstruction" type="axlapi:XDigitDiscardInstruction">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="digitDiscardInstructionName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="messageWaiting" type="xsd:string"/><!--This field is of the type axl:XLampBlinkRate in AXLEnums.xsd-->
					<xsd:element name="networkLocation" type="xsd:string"/><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
					<xsd:element name="patternUrgency" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="prefixDigitsOut" type="xsd:string"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="routeFilter" type="axlapi:XRouteFilter">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="routeFilterName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="supportOverlapSending" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is not valid for a translation pattern.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="patternPrecedence" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPatternPrecedence in AXLEnums.xsd-->
					<xsd:element name="releaseCause" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XReleaseCauseValue in AXLEnums.xsd-->
					<xsd:element name="allowDeviceOverride" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="provideOutsideDialtone" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="callingPartyNumberingPlan" type="xsd:string" default="Cisco CallManager" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberType" type="xsd:string" default="Cisco CallManager" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberingPlan" type="xsd:string" default="Cisco CallManager" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberType" type="xsd:string" default="Cisco CallManager" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPCallPark">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:annotation>
						<xsd:documentation>The CallManager for this Call Park is required.  When adding a Call Park with the AXL API, the CallManager is required.</xsd:documentation>
					</xsd:annotation>
					<xsd:choice>
						<xsd:element name="callManagerId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>Since CallPark is included in the XCallManager type, we do not want to cause a loop in the XML here, so we only allow callManagerId.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callManagerName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPDirectedCallPark">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:element name="retrievalPrefix" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The prefix used for park-code retrieval. User will dial prefix plus park code to retrieve a parked call. </xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="reversionPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The pattern used to revert the call when the parked call is not retrieved within retrieval timer.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>To be configured only when reversion pattern is not empty.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="revertCSS">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
							<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XCallingSearchSpace"/>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="revertCSSName" type="axlapi:String50"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPCallPickupGroup">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence minOccurs="0">
					<xsd:element name="name" type="xsd:Name"/>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>On Addition always the first member added is itself. Do not specify the first member as itself in an Add request . Also make sure that the priority always starts with 1. It will internally be taken care of during Addition an...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XPickupGroupMember" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="pickupNotification" type="axlapi:XPickupNotification" default="No Alert" nillable="false" minOccurs="0"/>
					<xsd:element name="pickupNotificationTimer" type="xsd:nonNegativeInteger" default="6" nillable="false" minOccurs="0"/>
					<xsd:element name="callInfoForPickupNotification" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable when Pickup Notification Policy is "Visual Alert" or "Visual or Audio Alert".</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="callingPartyInfo" type="xsd:boolean" default="false" nillable="false"/>
								<xsd:element name="calledPartyInfo" type="xsd:boolean" default="false" nillable="false"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPConference">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence minOccurs="0">
					<xsd:element name="mixer" type="xsd:string"/><!--This field is of the type axl:XMixer in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPCTIDirectoryNumber">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNPDirectoryNumber">
				<xsd:sequence minOccurs="0">
					<xsd:element name="callForwardCTIFailure" type="axlapi:XCallForwardInfo"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPMessageWaiting">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNPDirectoryNumber">
				<xsd:sequence minOccurs="0">
					<xsd:element name="isMessageWaitingOn" type="xsd:boolean"/>
					<xsd:element name="mwiCSS" type="axlapi:XCallingSearchSpace"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPDirectoryNumber">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence minOccurs="0">
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="aarNeighborhood" type="axlapi:XAARNeighborhood">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="aarDestinationMask" type="axlapi:String128" nillable="true" minOccurs="0"/>
					<xsd:element name="aarKeepCallHistory" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="aarVoiceMailEnabled" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="callForwardAll" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardBusy" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardBusyInt" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNoAnswer" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNoAnswerInt" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNoCoverage" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNoCoverageInt" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardOnFailure" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardAlternateParty" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNotRegistered" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNotRegisteredInt" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="callPickupGroup" type="axlapi:XNPCallPickupGroup">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callPickupGroupName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="autoAnswer" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XAutoAnswer in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>For an intercom line this tag should be treated as a mandatory tag and the valid values are Auto Answer with Headset and Auto Answer with Speakerphone.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>A value of 0 means 'none selected'.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>A value of 0 means 'none selected'.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="cfaCSSClause" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read-only.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="alertingName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="asciiAlertingName" type="axlapi:String32" nillable="true" minOccurs="0"/>
					<xsd:choice>
						<xsd:element name="presenceGroup" type="axlapi:XPresenceGroup"/>
						<xsd:element name="presenceGroupName" type="axlapi:String50"/>
						<!--<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XPresenceGroup">
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
									</xsd:extension>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>-->
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="shareLineAppearanceCSS">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
							<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XCallingSearchSpace"/>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="shareLineAppearanceCSSName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="voiceMailProfile" type="axlapi:XVoiceMailProfile"/>
						<xsd:element name="voiceMailProfileName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="patternPrecedence" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPatternPrecedence in AXLEnums.xsd-->
					<xsd:element name="releaseCause" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XReleaseCauseValue in AXLEnums.xsd-->
					<xsd:element name="hrDuration" type="xsd:long" nillable="false" minOccurs="0"/>
					<xsd:element name="hrInterval" type="xsd:long" nillable="false" minOccurs="0"/>
					<xsd:element name="cfaCSSPolicy" type="axlapi:XCFACSSActivationPolicy" default="Use System Default" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable for only intercom lines and if not set, intercom lines will not be active.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="defaultActivatedDevice" type="axlapi:XDevice">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="defaultActivatedDeviceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="ParkMonForwardNoRetrieveDN" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="ParkMonForwardNoRetrieveIntDN" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="ParkMonForwardNoRetrieveVMEnabled" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="ParkMonForwardNoRetrieveIntVMEnabled" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="ParkMonForwardNoRetrieveCSS" type="axlapi:XCallingSearchSpace" nillable="true" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only UUID Attribute is read by AXL</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="ParkMonForwardNoRetrieveCSSName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="ParkMonForwardNoRetrieveIntCSS" type="axlapi:XCallingSearchSpace" nillable="true" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only UUID Attribute is read by AXL</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="ParkMonForwardNoRetrieveIntCSSName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="ParkMonReversionTimer" type="xsd:long" nillable="true" minOccurs="0"/>
					<xsd:element name="partyEntranceTone" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPRoutePattern">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNPPattern">
				<xsd:sequence>
					<xsd:element name="destination">
						<xsd:complexType>
							<xsd:choice>
								<xsd:sequence>
									<xsd:choice>
										<xsd:element name="gateway" type="axlapi:XDevice">
											<xsd:annotation>
												<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
											</xsd:annotation>
										</xsd:element>
										<xsd:element name="gatewayName" type="xsd:string"/>
									</xsd:choice>
								</xsd:sequence>
								<xsd:sequence>
									<xsd:choice>
										<xsd:element name="routeList" type="axlapi:XRouteList">
											<xsd:annotation>
												<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
											</xsd:annotation>
										</xsd:element>
										<xsd:element name="routeListName" type="xsd:string"/>
									</xsd:choice>
								</xsd:sequence>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="authorizationCodeRequired" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="authorizationLevelRequired" type="xsd:nonNegativeInteger" minOccurs="0"/>
					<xsd:element name="clientCodeRequired" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="withTag" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read Only</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="withValueClause" type="axlapi:String255" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read Only</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isdnNSFInfoElement" nillable="true" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="cic" nillable="true" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>If not specified then a default value of '0' is set. This tag is not applicable to networkServiceProtocol PRI NI2. </xsd:documentation>

share/AXLSoap.xsd  view on Meta::CPAN

										<xsd:documentation>This parameter will take effect only if the selected network service has a valid  parameterName in TypeNSFService.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Default value would be Null in case not specified.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="resourcePriorityNamespaceName" type="xsd:string" minOccurs="0"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPSIPRoutePattern">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:element name="blockEnable" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="destination">
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="sipTrunk" type="axlapi:XSIPTrunk">
									<xsd:annotation>
										<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="sipTrunkName" type="axlapi:String128"/>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="dnOrPatternIPv6" type="xsd:string" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPHuntPilot">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNPPattern">
				<xsd:sequence minOccurs="0">
					<xsd:element name="destination">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="huntList" type="axlapi:XHuntList">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="huntListName" type="xsd:string"/>
								</xsd:choice>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ForwardHuntBusy" type="axlapi:XHuntForwardInfo" minOccurs="0"/>
					<xsd:element name="ForwardHuntNoAnswer" type="axlapi:XHuntForwardInfo" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This is applicable only if Cisco support use 1 Enterprise parameter is set.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="callPickupGroup" type="axlapi:XNPCallPickupGroup">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callPickupGroupName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="ParkMonForwardNoRetrieveDN" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="ParkMonForwardNoRetrieveCSS" type="axlapi:XCallingSearchSpace" nillable="true" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only UUID Attribute is read by AXL</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="ParkMonForwardNoRetrieveCSSName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPTransformationPattern">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>dialPlan is mandatory for patterns with @ in it.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlan" type="axlapi:XDialPlan">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialPlanName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstruction" type="axlapi:XDigitDiscardInstruction" nillable="true"/>
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="patternUrgency" type="xsd:boolean">
						<xsd:annotation>
							<xsd:documentation>Always set as true</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="routeFilter" type="axlapi:XRouteFilter">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="routeFilterName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPCalledPartyTransformationPattern">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNumPlan">
				<xsd:sequence>
					<xsd:element name="calledPartyTransformationMask" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>dialPlan is mandatory for patterns with @ in it.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlan" type="axlapi:XDialPlan">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialPlanName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstruction" type="axlapi:XDigitDiscardInstruction" nillable="true"/>
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="patternUrgency" type="xsd:boolean">
						<xsd:annotation>
							<xsd:documentation>Always set as true</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="calledPartyPrefixDigits" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="routeFilter" type="axlapi:XRouteFilter">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="routeFilterName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="calledPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XNPTranslationPattern">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XNPPattern">
				<xsd:sequence minOccurs="0">
					<xsd:choice>
						<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace"/>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Default value would be Null in case not specified.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="resourcePriorityNamespaceName" type="xsd:string" minOccurs="0"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XOSVersion">
		<xsd:sequence>
			<xsd:element name="osName" type="axlapi:String50"/>
			<xsd:element name="osVersion" type="axlapi:String50"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XPhoneProfile">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XIPPhone"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XPickupGroupMember">
		<xsd:sequence>
			<xsd:element name="priority" type="xsd:nonNegativeInteger"/>
			<xsd:choice>
				<xsd:element name="pickupGroup">
					<xsd:annotation>
						<xsd:documentation>uuid of Pickup Group</xsd:documentation>
					</xsd:annotation>
					<xsd:complexType>
						<xsd:simpleContent>
							<xsd:extension base="axlapi:XUUID">
								<xsd:attribute name="uuid" type="axlapi:XUUID"/>
							</xsd:extension>
						</xsd:simpleContent>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="pickupGroupName" type="axlapi:String255"/>
				<xsd:element name="pickupDNAndPartition">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="dnPattern" type="axlapi:XDirectoryNumber"/>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="routePartition" type="axlapi:XRoutePartition">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="routePartitionId" type="axlapi:XUUID">
										<xsd:annotation>
											<xsd:documentation>DEPRECATED: use routePartition/uuid</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="routePartitionName" type="axlapi:String50"/>
								</xsd:choice>
							</xsd:sequence>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XPhoneTemplate">
		<xsd:annotation>
			<xsd:documentation>Phone templates describe what features are assigned to what buttons on a particular phone or set of phones. These templates are downloaded to phones and add-on-modules.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name">
				<xsd:annotation>
					<xsd:documentation>The template's name.</xsd:documentation>
				</xsd:annotation>
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:maxLength value="50"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="basePhoneTemplate" type="axlapi:XPhoneTemplate">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="basePhoneTemplateName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="isUserModifiable" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-Only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="buttons" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The list of buttons on this model of phone. The feature and label of the first button cannot be modified.              </xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="button" type="axlapi:XButton" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XProcessConfig">
		<xsd:annotation>
			<xsd:documentation>Describes the ProcessConfig table (used for service parameters)</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="processNode" type="axlapi:XProcessNode"/>
				<xsd:element name="processNodeName" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="name" type="axlapi:String50" nillable="false"/>
			<xsd:element name="service" type="xsd:string" nillable="false"/><!--This field is of the type axl:XService in AXLEnums.xsd-->
			<xsd:element name="value" type="axlapi:String1024" nillable="true" minOccurs="0"/>
			<xsd:element name="valueType" type="xsd:string" nillable="false"/><!--This field is of the type axl:XParam in AXLEnums.xsd-->
			<xsd:element name="primaryData" type="xsd:boolean" default="false" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XProcessNode">
		<xsd:annotation>
			<xsd:documentation>Describes a server running in the CCM cluster.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String255">
				<xsd:annotation>
					<xsd:documentation>The primary hostname of the process node.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="mac" type="axlapi:XMacAddress" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The mac address of the host.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="IPv6Name" type="xsd:string" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XProcessNodeService">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="processNode" type="axlapi:XProcessNode" nillable="false"/>
				<xsd:element name="processNodeName" type="axlapi:String255" nillable="false"/>
			</xsd:choice>
			<xsd:element name="service" type="xsd:string" nillable="false"/><!--This field is of the type axl:XService in AXLEnums.xsd-->
			<xsd:element name="fileName" type="axlapi:String255" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="traceLevel" type="xsd:nonNegativeInteger" default="0" nillable="false"/>
			<xsd:element name="userCategories" type="xsd:nonNegativeInteger" default="0" nillable="false"/>
			<xsd:element name="enable" type="xsd:boolean" default="false" nillable="false"/>
			<xsd:element name="numFiles" type="xsd:nonNegativeInteger" default="250" nillable="false"/>
			<xsd:element name="numLines" type="xsd:nonNegativeInteger" default="10000" nillable="false"/>
			<xsd:element name="numMinutes" type="xsd:nonNegativeInteger" default="1440" nillable="false"/>
			<xsd:element name="includeNonDeviceTraces" type="xsd:boolean" default="false" nillable="false"/>
			<xsd:element name="useXML" type="xsd:boolean" fixed="false" nillable="false"/>
			<xsd:element name="serverName" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="deviceNameMonitorFlag" type="xsd:boolean" default="false" nillable="false"/>
			<xsd:element name="deviceTypeMonitorFlag" type="xsd:boolean" fixed="false" nillable="false"/>
			<xsd:element name="fileTraceFlag" type="xsd:boolean" default="false" nillable="false"/>
			<xsd:element name="outputDebugStringFlag" type="xsd:boolean" default="false" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XProductInfo">
		<xsd:sequence>
			<xsd:element name="model" type="xsd:string"/><!--This field is of the type axl:XModel in AXLEnums.xsd-->
			<xsd:element name="maxPorts" type="xsd:nonNegativeInteger" minOccurs="0"/>
			<xsd:element name="showInDropDown" type="xsd:boolean" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="name" type="xsd:string"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
	</xsd:complexType>
	<xsd:complexType name="XRegion">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50" nillable="false"/>
			<xsd:element name="relatedRegions" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.  AXL API automatically adds the required entries in the RegionMatrix table.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="relatedRegion" type="axlapi:XRegionRelationship" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XRegionRelationship">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="region" type="axlapi:XRegion" nillable="false"/>
				<xsd:element name="name" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="bandwidth" type="xsd:string" default="G.711" nillable="false"/><!--This field is of the type axl:XBandwidth in AXLEnums.xsd-->
			<xsd:element name="videoBandwidth" type="xsd:nonNegativeInteger" nillable="false"/>
			<xsd:element name="lossyNetwork" type="axlapi:XLossyNetwork" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XResourcePriorityDefaultNamespace">
		<xsd:sequence minOccurs="0">
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Default value would be Null in case not specified.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="resourcePriorityNamespaceName" type="xsd:string" minOccurs="0"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XResourcePriorityNamespace">
		<xsd:sequence>
			<xsd:element name="namespace" type="xsd:string" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XResourcePriorityNamespaceListMember">
		<xsd:choice>
			<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" maxOccurs="unbounded">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="resourcePriorityNamespaceName" type="xsd:string" maxOccurs="unbounded"/>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
		<xsd:attribute name="index" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XResourcePriorityNamespaceList">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="members" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XResourcePriorityNamespaceListMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XRouteFilter">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation>Not nullable.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="clause" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:annotation>
					<xsd:documentation>Not nullable.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="dialPlan" type="axlapi:XDialPlan">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dialPlanName" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read only. Not nullable.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members">
				<xsd:annotation>
					<xsd:documentation>Nullable.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XRouteFilterMember" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XRouteFilterMember">
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="dialPlanTag" type="axlapi:XDialPlanTag">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is used by the AXL API for inserts and updates.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dialPlanTagName" type="axlapi:String50">
					<xsd:annotation>
						<xsd:documentation>Actually refers to DialPlanTag.Tag in database.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="digits" type="xsd:nonNegativeInteger" minOccurs="0"/>
			<xsd:element name="operator" type="axlapi:XOperator"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="priority" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XRouteFilterMemberId">
		<xsd:simpleContent>
			<xsd:extension base="axlapi:XUUID">
				<xsd:attribute name="priority" type="xsd:nonNegativeInteger"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>
	<xsd:complexType name="XRouteGroup">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:Name"/>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XRouteGroupMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XRouteGroupMember">
		<xsd:sequence minOccurs="0">
			<xsd:element name="deviceSelectionOrder" type="xsd:nonNegativeInteger"/>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger"/>
			<xsd:choice>
				<xsd:element name="device" type="axlapi:XDevice">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="deviceName" type="xsd:string"/>
				<xsd:element name="deviceId" type="axlapi:XUUID">
					<xsd:annotation>
						<xsd:documentation>DEPRECATED: use device/uuid</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
		<xsd:attribute name="port" type="xsd:nonNegativeInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XLineGroup">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:Name"/>
			<xsd:element name="distributionAlgorithm" type="xsd:string" nillable="false"/><!--This field is of the type axl:XDistributeAlgorithm in AXLEnums.xsd-->
			<xsd:element name="rnaReversionTimeOut" type="xsd:nonNegativeInteger" default="10" nillable="false"/>
			<xsd:element name="huntAlgorithmNoAnswer" type="xsd:string" nillable="false"/><!--This field is of the type axl:XHuntAlgorithm in AXLEnums.xsd-->
			<xsd:element name="huntAlgorithmBusy" type="xsd:string" nillable="false"/><!--This field is of the type axl:XHuntAlgorithm in AXLEnums.xsd-->
			<xsd:element name="huntAlgorithmNotAvailable" type="xsd:string" nillable="false"/><!--This field is of the type axl:XHuntAlgorithm in AXLEnums.xsd-->
			<xsd:element name="members">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="member" type="axlapi:XLineGroupMember" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XLineGroupMember">
		<xsd:sequence minOccurs="0">
			<xsd:element name="lineSelectionOrder" type="xsd:nonNegativeInteger"/>
			<xsd:choice>
				<xsd:element name="directoryNumber" type="axlapi:XNPDirectoryNumber">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="directoryNumberId" type="axlapi:XUUID">
					<xsd:annotation>
						<xsd:documentation>DEPRECATED: use directorynumber/uuid</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dnPatternAndPartition">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="dnPattern" type="axlapi:XDirectoryNumber"/>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="routePartition" type="axlapi:XRoutePartition">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="routePartitionId" type="axlapi:XUUID">
										<xsd:annotation>
											<xsd:documentation>DEPRECATED: use routePartition/uuid</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="routePartitionName" type="axlapi:String50"/>
								</xsd:choice>
							</xsd:sequence>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XRouteListMember">
		<xsd:annotation>
			<xsd:documentation>Represents a mapping between route groups and route lists.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="routeGroup" type="axlapi:XRouteGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="routeGroupName" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="selectionOrder" type="xsd:nonNegativeInteger"/>
			<xsd:element name="calledPartyTransformationMask" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="callingPartyTransformationMask" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="digitDiscardInstruction" type="axlapi:XDigitDiscardInstruction">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="digitDiscardInstructionName" type="axlapi:String50">
					<xsd:annotation>
						<xsd:documentation>This should be written as dialPlanName:digitDiscardInstructionName(NANP:PreDot)</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="prefixDigitsOut" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="useFullyQualifiedCallingPartyNumber" type="xsd:string"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:element name="callingPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
			<xsd:element name="callingPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
			<xsd:element name="calledPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
			<xsd:element name="calledPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XHuntListMember">
		<xsd:annotation>
			<xsd:documentation>Represents a mapping between line groups and hunt lists.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="lineGroup" type="axlapi:XLineGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="lineGroupName" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
			<xsd:element name="selectionOrder" type="xsd:nonNegativeInteger"/>
			<xsd:element name="calledPartyTransformationMask" type="axlapi:String50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="callingPartyTransformationMask" type="axlapi:String50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="digitDiscardInstruction" type="axlapi:XDigitDiscardInstruction">
					<xsd:annotation>
						<xsd:documentation>Read-only</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="digitDiscardInstructionName" type="axlapi:String50">
					<xsd:annotation>
						<xsd:documentation>Read-only</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="prefixDigitsOut" type="axlapi:String50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="useFullyQualifiedCallingPartyNumber" type="xsd:string"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XRouteList">
		<xsd:annotation>
			<xsd:documentation>Although stored in the Device table, the routeList is not really a device.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:Name">
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="callManagerGroupName" type="axlapi:String50" nillable="false"/>
				<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="routeListEnabled" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Each member is a representaion of an entry in the RouteList table.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XRouteListMember" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XHuntList">
		<xsd:annotation>
			<xsd:documentation>Although stored in the Device table, the huntList is not really a device. Hunt list are also stored in Route list table.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:Name">
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="description" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="callManagerGroupName" type="axlapi:String50" nillable="false"/>
				<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="routeListEnabled" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>From Device table.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="members" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Each member is a representation of an entry in the RouteList table.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XHuntListMember" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XSIPDialRules">
		<xsd:sequence minOccurs="0">
			<xsd:element name="dialPattern" type="axlapi:XDialPattern"/>
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="description" type="xsd:string" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XSIPRealm">
		<xsd:sequence>
			<xsd:element name="realm" type="xsd:string"/>
			<xsd:element name="userid" type="xsd:string"/>
			<xsd:element name="digestCredentials" type="xsd:string"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XSIPProfile">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:String50" nillable="false"/>
			<xsd:element name="description" type="axlapi:String100" nillable="true" minOccurs="0"/>
			<xsd:element name="defaultTelephonyEventPayloadType" type="xsd:long" default="101" minOccurs="0"/>
			<xsd:element name="redirectByApplication" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="ringing180" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="timerInvite" type="xsd:long" default="180" minOccurs="0"/>
			<xsd:element name="timerRegisterDelta" type="xsd:long" default="5" minOccurs="0"/>
			<xsd:element name="timerRegister" type="xsd:long" default="3600" minOccurs="0"/>
			<xsd:element name="timerT1" type="xsd:long" default="500" minOccurs="0"/>
			<xsd:element name="timerT2" type="xsd:long" default="4000" minOccurs="0"/>
			<xsd:element name="retryInvite" type="xsd:long" default="6" minOccurs="0"/>
			<xsd:element name="retryNotInvite" type="xsd:long" default="10" minOccurs="0"/>
			<xsd:element name="startMediaPort" type="xsd:long" default="16384" minOccurs="0"/>
			<xsd:element name="stopMediaPort" type="xsd:long" default="32766" minOccurs="0"/>
			<xsd:element name="callpickupURI" type="axlapi:Name128" default="x-cisco-serviceuri-pickup" minOccurs="0"/>
			<xsd:element name="callpickupListURI" type="axlapi:String128" default="x-cisco-serviceuri-opickup" minOccurs="0"/>
			<xsd:element name="callpickupGroupURI" type="axlapi:String128" default="x-cisco-serviceuri-gpickup" minOccurs="0"/>
			<xsd:element name="meetmeServiceURI" type="axlapi:String128" default="x-cisco-serviceuri-meetme" minOccurs="0"/>
			<xsd:element name="userInfo" type="axlapi:XZzuserInfo" default="None" minOccurs="0"/>
			<xsd:element name="dtmfDbLevel" type="axlapi:XZzdtmfDbLevel" default="Nominal" minOccurs="0"/>
			<xsd:element name="callHoldRingback" type="axlapi:XZzpreff" default="Off" minOccurs="0"/>
			<xsd:element name="anonymousCallBlock" type="axlapi:XZzpreff" default="Off" minOccurs="0"/>
			<xsd:element name="callerIdBlock" type="axlapi:XZzpreff" default="Off" minOccurs="0"/>
			<xsd:element name="dndControl" type="axlapi:XZzdndcontrol" default="Admin" minOccurs="0"/>
			<xsd:element name="telnetLevel" type="axlapi:XTelnetLevel" default="Disabled" minOccurs="0"/>
			<xsd:element name="timerKeepAlive" type="xsd:long" default="120" minOccurs="0"/>
			<xsd:element name="timerSubscribe" type="xsd:long" default="120" minOccurs="0"/>
			<xsd:element name="timerSubscribeDelta" type="xsd:long" default="5" minOccurs="0"/>
			<xsd:element name="maxRedirects" type="xsd:long" default="70" minOccurs="0"/>
			<xsd:element name="timerOffhookToFirstDigit" type="xsd:long" default="15000" minOccurs="0"/>
			<xsd:element name="callForwardURI" type="axlapi:String128" default="x-cisco-serviceuri-cfwdall" minOccurs="0"/>
			<xsd:element name="abbreviatedDialURI" type="axlapi:String128" default="x-cisco-serviceuri-abbrdial" minOccurs="0"/>
			<xsd:element name="confJoinEnable" type="xsd:boolean" default="true" minOccurs="0"/>
			<xsd:element name="rfc2543Hold" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="semiAttendedTransfer" type="xsd:boolean" default="true" minOccurs="0"/>
			<xsd:element name="enableVAD" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="stutterMsgWaiting" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="callStats" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="t38Invite" type="xsd:boolean" default="false" minOccurs="0"/>
			<xsd:element name="rerouteIncomingRequest" type="axlapi:XSIPReroute" default="Never" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="resourcePriorityNamespaceList" type="axlapi:XResourcePriorityNamespaceList" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="resourcePriorityNamespaceListName" type="axlapi:Name50" default="Null" nillable="true"/>
			</xsd:choice>
			<xsd:element name="enableAnatForEarlyOfferCalls" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="gClear" type="axlapi:XGClear" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XSIPTrunkSecurityProfile">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:String64"/>
			<xsd:element name="description" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="securityMode" type="axlapi:XDeviceSecurityMode" nillable="true" minOccurs="0"/>
			<xsd:element name="incomingTransport" type="xsd:string" default="TCP+UDP" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTransport in AXLEnums.xsd-->
			<xsd:element name="outgoingTransport" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XTransport in AXLEnums.xsd-->
			<xsd:element name="digestAuthentication" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="noncePolicyTime" type="xsd:long" default="600" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Only if digestAuthentication is enabled this value can be changed.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="x509SubjectName" type="axlapi:String4096" nillable="false" minOccurs="0"/>
			<xsd:element name="incomingPort" type="xsd:long" nillable="false" minOccurs="0"/>
			<xsd:element name="applLevelAuthentication" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptPresenceSubscription" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptOutOfDialogRefer" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptUnsolicitedNotification" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="allowReplaceHeader" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="transmitSecurityStatus" type="xsd:boolean" nillable="false" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XTimePeriod">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="startTime" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTimeOfDay in AXLEnums.xsd-->
			<xsd:element name="endTime" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTimeOfDay in AXLEnums.xsd-->
			<xsd:element name="startDay" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XDayOfWeek in AXLEnums.xsd-->
			<xsd:element name="endDay" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XDayOfWeek in AXLEnums.xsd-->
			<xsd:element name="monthOfYear" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XMonthOfYear in AXLEnums.xsd-->
			<xsd:element name="dayOfMonth" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
			<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="isPublished" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>TimePeriod cannot be published if it has a todOwnerId assigned to it. Only Administrative Time Period can be published.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="todOwnerId" type="axlapi:XUUID"/>
				<xsd:element name="todOwnerIdName" type="axlapi:UniqueName50"/>
			</xsd:choice>
			<xsd:element name="dayOfMonthEnd" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
			<xsd:element name="monthOfYearEnd" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XMonthOfYear in AXLEnums.xsd-->
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XTimeScheduleTimePeriod">
		<xsd:choice>
			<xsd:element name="timePeriod" type="axlapi:XTimePeriod">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="timePeriodName" type="axlapi:String50" nillable="false"/>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XTimeSchedule">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50"/>
			<xsd:element name="members" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XTimeScheduleTimePeriod" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
			<xsd:element name="isPublished" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>TimeSchedule cannot be published if it has a todOwnerId assigned to it. Only Administrative Time Schedule can be published.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="timeScheduleCategory" type="axlapi:XTimeScheduleCategory" nillable="false" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="todOwnerId" type="axlapi:XUUID"/>
				<xsd:element name="todOwnerIdName" type="axlapi:UniqueName50"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XTODAccess">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String128" nillable="false"/>
			<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
			<xsd:choice>
				<xsd:element name="ownerId" type="axlapi:XUUID"/>
				<xsd:element name="ownerIdName" type="axlapi:UniqueName50"/>
			</xsd:choice>
			<xsd:element name="members" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XTODAccessMember" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="associatedRemoteDestination" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-Only. List of the remoteDestination entries associated with this TodAccess.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="remoteDestination" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Name of the remoteDestination</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XTODAccessMember">
		<xsd:sequence minOccurs="0">
			<xsd:choice minOccurs="0">
				<xsd:element name="timeSchedule" type="axlapi:XTimeSchedule" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="timeScheduleName" type="axlapi:String50" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Not nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="accessList" type="axlapi:XCallerFilterList" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="accessListName" type="axlapi:String128" nillable="false" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Not nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XRoutePartition">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:string"/>
			<xsd:element name="description" type="xsd:string" minOccurs="0"/>
			<xsd:element name="dialPlanWizardGenId" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:element name="timeScheduleId" type="axlapi:XUUID">
					<xsd:annotation>
						<xsd:documentation>Since CallPark is included in the XCallManager type, we do not want to cause a loop in the XML here, so we only allow callManagerId.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="timeScheduleName" type="axlapi:String50">
					<xsd:annotation>
						<xsd:documentation>Not nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="useOriginatingDeviceTimeZone" type="xsd:boolean" minOccurs="0"/>
			<xsd:element name="timeZone" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XTimeZone in AXLEnums.xsd-->
			<xsd:element name="partitionUsage" type="axlapi:XPartitionUsage" nillable="true" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XApplicationToSoftKeyTemplate">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="softKeyTemplateId" type="axlapi:XUUID" nillable="false"/>
				<xsd:element name="softKeyTemplateName" type="axlapi:String100" nillable="false">
					<xsd:annotation>
						<xsd:documentation>This template should not be a standard template.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="standardSoftKeyTemplate" type="axlapi:XSoftkeyTemplate" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. </xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="standardSoftKeyTemplateName" type="axlapi:String100" nillable="false"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XSoftKeySet">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="softKeyTemplate" type="axlapi:XSoftkeyTemplate">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="softKeyTemplateName" type="axlapi:String100"/>
			</xsd:choice>
			<xsd:element name="callStates" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="callState" maxOccurs="unbounded">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="callStateName" type="axlapi:XCallState" nillable="false"/>
									<xsd:element name="softKeys" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>List of mandatory keys for each callstate ::               On Hook - NewCall
Connected - End Call 
On Hold - Resume
Off Hook - End Call 
Connected Transfer - Transfer
Digits After First - Backward
Connected Conference  -  Conference
Ring Out - End Call
Off Hook With Feature - End Call            </xsd:documentation>
										</xsd:annotation>
										<xsd:complexType>
											<xsd:sequence minOccurs="0">
												<xsd:element name="softKey" minOccurs="0" maxOccurs="unbounded">
													<xsd:complexType>
														<xsd:sequence>
															<xsd:element name="positionId" type="xsd:nonNegativeInteger" nillable="false">
																<xsd:annotation>
																	<xsd:documentation>Read-Only.The positionId has values starting with 0 and get incremented by 1 for each call state.</xsd:documentation>
																</xsd:annotation>
															</xsd:element>
															<xsd:element name="softKeyName" type="axlapi:XSoftkey" nillable="false"/>
														</xsd:sequence>
													</xsd:complexType>
												</xsd:element>
											</xsd:sequence>
										</xsd:complexType>
									</xsd:element>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XSoftkeyTemplate">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String100"/>
			<xsd:element name="description" type="axlapi:String100" minOccurs="0"/>
			<xsd:choice>
				<xsd:element name="baseSoftkeyTemplate" type="axlapi:XSoftkeyTemplate" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API. </xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="baseSoftkeyTemplateName" type="axlapi:String100" nillable="false"/>
			</xsd:choice>
			<xsd:element name="isDefault" type="xsd:boolean" nillable="true" minOccurs="0"/>
			<xsd:element name="applications">
				<xsd:annotation>
					<xsd:documentation>Read-Only</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="application" type="axlapi:String50" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XRemoteDestination">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="destination" type="xsd:string" nillable="false"/>
			<xsd:element name="answerTooSoonTimer" type="xsd:nonNegativeInteger" nillable="false"/>
			<xsd:element name="answerTooLateTimer" type="xsd:nonNegativeInteger" nillable="false"/>
			<xsd:element name="delayBeforeRingingCell" type="xsd:nonNegativeInteger" nillable="false"/>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Either Remote Destination Profile or Dual Mode Device can be specified but not both. Once added cannot be updated.</xsd:documentation>
				</xsd:annotation>
				<xsd:choice minOccurs="0">
					<xsd:element name="remoteDestinationProfile" type="axlapi:XRemoteDestinationProfile">
						<xsd:annotation>
							<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="remoteDestinationProfileName" type="axlapi:String50" nillable="false"/>
				</xsd:choice>
				<xsd:choice minOccurs="0">
					<xsd:element name="dualModeDevice" type="axlapi:XDevice">
						<xsd:annotation>
							<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dualModeDeviceName" type="axlapi:String50" nillable="false"/>
				</xsd:choice>
			</xsd:choice>
			<xsd:element name="isMobilePhone" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="enableMobileConnect" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
			<xsd:element name="lineAssociations" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The line association for this remote destination. The line to be associated must already be added to the remote destination profile. All directory numbers specified must already exist in the database.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="lineAssociation" maxOccurs="unbounded">
							<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XLineAssociation">
										<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="optional"/>
									</xsd:extension>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="timeZone" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTimeZone in AXLEnums.xsd-->
			<xsd:choice minOccurs="0">
				<xsd:element name="todAccess" type="axlapi:XTODAccess" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="todAccessName" type="axlapi:String128" nillable="true"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="mobileSmartClient" type="axlapi:XDevice">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="mobileSmartClientName" type="axlapi:String128"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XMobileSmartClientProfile">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="xsd:string" nillable="true"/>
			<xsd:element name="mobileSmartClient" type="axlapi:XMobileSmartClient"/>
			<xsd:element name="enableSNRUri" type="xsd:string"/>
			<xsd:element name="enableCFAUri" type="xsd:string"/>
			<xsd:element name="handOffUri" type="xsd:string"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XLineAssociation">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID"/>
				<xsd:sequence>
					<xsd:element name="pattern" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The directory number to be associated. This directory number must be already associated to remote destination profile. </xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice>
						<xsd:element name="routePartitionId" type="axlapi:XUUID"/>
						<xsd:element name="routePartitionName" type="axlapi:String50"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XTranscoder">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:UniqueString255" nillable="false"/>
			<xsd:element name="description" type="axlapi:String128" nillable="true" minOccurs="0"/>
			<xsd:element name="product" type="xsd:string" nillable="false"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
			<xsd:element name="subUnit" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is used only by     Cisco Media Termination Point (WS-SVC-CMM) and is a mandatory tag for Cisco Media Termination Point (WS-SVC-CMM) Transcoder. Valid values range from 1 to 4.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="devicePool" type="axlapi:XDevicePool" nillable="false">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="axlapi:UniqueString50" nillable="false"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="commonDeviceConfig" type="axlapi:XCommonDeviceConfig" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="commonDeviceConfigName" type="axlapi:UniqueString50" nillable="true"/>
			</xsd:choice>
			<xsd:element name="loadInformation" type="axlapi:XLoadInformation" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>For devices with load information, if any special load information is specified, the special attribute is set to TRUE. Otherwise, the load information is the default for the product.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" nillable="true" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is used only by     Cisco Media Termination Point (WS-SVC-CMM)</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="isTrustedRelayPoint" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="maximumCapacity" type="xsd:nonNegativeInteger" default="32" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This tag is valid only for  Cisco Media Termination Point (WS-SVC-CMM). Valid values for this tag are 32,64,96,128. </xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XSpeeddial">
		<xsd:sequence>
			<xsd:element name="dirn" type="axlapi:XDirectoryNumber"/>
			<xsd:element name="label" type="xsd:string"/>
			<xsd:element name="asciiLabel" type="axlapi:String50" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="index" type="xsd:positiveInteger"/>
	</xsd:complexType>
	<xsd:complexType name="XSRSTInfo">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:UniqueName50"/>
			<xsd:element name="srstOption" type="xsd:string" default="User Specific"/><!--This field is of the type axl:XSRSTOption in AXLEnums.xsd-->
			<xsd:element name="userModifiable" type="xsd:boolean" default="true"/>
			<xsd:element name="ipAddr1" minOccurs="0">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:length value="16"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="port1" type="xsd:nonNegativeInteger" default="2000"/>
			<xsd:element name="ipAddr2" minOccurs="0">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:length value="16"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="port2" type="xsd:nonNegativeInteger" default="2000" minOccurs="0"/>
			<xsd:element name="ipAddr3" minOccurs="0">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:length value="16"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="port3" type="xsd:nonNegativeInteger" default="2000" minOccurs="0"/>
			<xsd:element name="certificate" type="axlapi:String4096"/>
			<xsd:element name="isSecure" type="xsd:boolean" default="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XSubscribedService">
		<xsd:annotation>
			<xsd:documentation>An entry in the TelecasterSubscribedService table.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:choice>
				<xsd:element name="telecasterService" type="axlapi:XTelecasterService">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API on adds and updates.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="telecasterServiceName" type="axlapi:String100"/>
			</xsd:choice>
			<xsd:element name="name" type="axlapi:String100"/>
			<xsd:element name="url" minOccurs="0">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:maxLength value="512"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="urlButtonIndex" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
			<xsd:element name="urlLabel" type="axlapi:String50" minOccurs="0"/>
			<xsd:element name="urlLabelAscii" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="serviceNameAscii" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="phoneService" type="axlapi:XPhoneService" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="phoneServiceCategory" type="axlapi:XPhoneServiceCategory" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="vendor" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="version" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="priority" type="xsd:int" default="50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only. Value should be between 1 and 100</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XTelecasterService">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String100" nillable="false"/>
			<xsd:element name="description" type="axlapi:String1024" minOccurs="0"/>
			<xsd:element name="templateURL" nillable="false">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:maxLength value="512"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XT1PortList">
		<xsd:sequence>
			<xsd:element name="port" type="axlapi:XT1Port" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XT1Port">
		<xsd:annotation>
			<xsd:documentation>A T1Port is a T1 Time Slot.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:XAnalogPort">
				<xsd:sequence minOccurs="0">
					<xsd:element name="callerId" type="xsd:string"/><!--This field is of the type axl:XCallerID in AXLEnums.xsd-->
					<xsd:element name="endpointId" type="axlapi:String128" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="XTrunkInfo">
		<xsd:annotation>
			<xsd:documentation>Collection of trunk information.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="kind" type="xsd:string"><!--This field is of the type axl:XTrunk in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>What kind of trunk this is (Ground Start, Loop Start, POTS, etc.).</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="level" type="xsd:string"><!--This field is of the type axl:XTrunkDirection in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>The trunk level (e.g., DAL).</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="direction" type="xsd:string"><!--This field is of the type axl:XTrunkDirection in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Inbound, Outbound, or Bothways.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="pad">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="rx" type="xsd:string"><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
							<xsd:annotation>
								<xsd:documentation>Receive pad.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="tx" type="xsd:string"><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
							<xsd:annotation>
								<xsd:documentation>Transmit pad.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XUserGroupMember">
		<xsd:annotation>
			<xsd:documentation>User Group Member</xsd:documentation>
		</xsd:annotation>
		<xsd:choice>
			<xsd:element name="user" type="axlapi:XUser" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="userId" type="xsd:string" nillable="false"/>
		</xsd:choice>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XUserGroup">
		<xsd:annotation>
			<xsd:documentation>User Group</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:UniqueName128" nillable="false"/>
			<xsd:element name="members" nillable="true" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XUser">
		<xsd:sequence>
			<xsd:element name="firstname" type="xsd:string" minOccurs="0"/>
			<xsd:element name="middlename" type="xsd:string" minOccurs="0"/>
			<xsd:element name="lastname" type="xsd:string"/>
			<xsd:element name="userid" type="xsd:string"/>
			<xsd:element name="password" type="xsd:string" minOccurs="0"/>
			<xsd:element name="pin" minOccurs="0">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:minLength value="0"/>
						<xsd:maxLength value="127"/>
						<xsd:pattern value="(\d{5,127})*"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="telephoneNumber" type="axlapi:XDirectoryNumber" minOccurs="0"/>
			<xsd:element name="mailid" type="xsd:string" minOccurs="0"/>
			<xsd:element name="extension" type="axlapi:XDirectoryNumber" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="department" type="xsd:string" minOccurs="0"/>
			<xsd:element name="manager" type="xsd:string" minOccurs="0"/>
			<xsd:element name="userLocale" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
			<xsd:element name="associatedDevices" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Also known as controlled devices.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="device" type="axlapi:String50" minOccurs="0" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Name of device.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="primaryExtension" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Only DNs associated with the associatedDevices of the  User can be used as primary extension.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="pattern" type="axlapi:XDirectoryNumber" nillable="false">
							<xsd:annotation>
								<xsd:documentation>DN or Pattern</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="routePartitionName" type="axlapi:String50" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Route Partition to which the DN is associated.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="ipccExtension" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="pattern" type="axlapi:XDirectoryNumber" nillable="false">
							<xsd:annotation>
								<xsd:documentation>DN or Pattern</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="routePartitionName" type="axlapi:String50" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Route Partition to which the DN is associated.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="associatedPC" type="xsd:string" minOccurs="0"/>
			<xsd:element name="associatedGroups" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-Only.These groups automatically get added once the user is associated with a directory group.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="userGroup" minOccurs="0" maxOccurs="unbounded">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="name" type="axlapi:String100" nillable="false">
										<xsd:annotation>
											<xsd:documentation>Name of User Group</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="userRoles" nillable="true" minOccurs="0" maxOccurs="unbounded">
										<xsd:complexType>
											<xsd:sequence minOccurs="0">
												<xsd:element name="userRole" nillable="true" minOccurs="0" maxOccurs="unbounded">
													<xsd:annotation>
														<xsd:documentation>Name of the User Role associated with the user group.</xsd:documentation>
													</xsd:annotation>
													<xsd:complexType>
														<xsd:simpleContent>
															<xsd:extension base="axlapi:String100">
																<xsd:attribute name="uuid" type="axlapi:XUUID"/>
															</xsd:extension>
														</xsd:simpleContent>
													</xsd:complexType>
												</xsd:element>
											</xsd:sequence>
										</xsd:complexType>
									</xsd:element>
								</xsd:sequence>
								<xsd:attribute name="uuid" type="axlapi:XUUID"/>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="enableCTI" type="xsd:boolean" default="true" minOccurs="0"/>
			<xsd:element name="digestCredentials" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="phoneProfiles" minOccurs="0">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:choice>
							<xsd:element name="profile" type="axlapi:XPhoneProfile" nillable="false" maxOccurs="unbounded">
								<xsd:annotation>
									<xsd:documentation>The complete profile object.  Only the "uuid" attribute is used by the AXL API.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="profileName" type="xsd:string" nillable="false" maxOccurs="unbounded">
								<xsd:annotation>
									<xsd:documentation>The profile name.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:choice>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="enableMobility" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="enableMobileVoiceAccess" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
			<xsd:element name="maxDeskPickupWaitTime" type="xsd:unsignedLong" default="10000" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Maximum wait time for Desk Pickup must be a number in the range 0 to 30000.Not Nullable.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="remoteDestinationLimit" type="xsd:unsignedShort" default="4" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Remote Destination Limit must be a number in the range 1 to 10. Not Nullable.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="associatedRemoteDestinationProfiles" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-Only.These groups automatically get added once the user is associated with a Remote Destination Profile.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">

share/AXLSoap.xsd  view on Meta::CPAN

					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="passwordCredentials" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only. These groups get automatically added once an user is added.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:choice minOccurs="0">
							<xsd:element name="pwdCredPolicy" type="axlapi:XUUID">
								<xsd:annotation>
									<xsd:documentation>Only uuid can be accepted.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="pwdCredPolicyName" type="axlapi:String50"/>
						</xsd:choice>
						<xsd:element name="pwdCredUserCantChange" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pwdCredUserMustChange" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pwdCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pwdCredTimeChanged" type="xsd:string" minOccurs="0"/>
						<xsd:element name="pwdCredTimeAdminLockout" type="xsd:string" minOccurs="0"/>
						<xsd:element name="pwdCredLockedByAdministrator" type="xsd:boolean" minOccurs="0"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="pinCredentials" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-only. These groups get automatically added once an user is added. This tag is not valid for an application user.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:choice minOccurs="0">
							<xsd:element name="pinCredPolicy" type="axlapi:XUUID">
								<xsd:annotation>
									<xsd:documentation>Only uuid can be accepted.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="pinCredPolicyName" type="axlapi:String50"/>
						</xsd:choice>
						<xsd:element name="pinCredUserCantChange" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pinCredUserMustChange" minOccurs="0"/>
						<xsd:element name="pinCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
						<xsd:element name="pinCredTimeChanged" type="xsd:string" minOccurs="0"/>
						<xsd:element name="pinCredTimeAdminLockout" type="xsd:string" minOccurs="0"/>
						<xsd:element name="pinCredLockedByAdministrator" type="xsd:boolean" minOccurs="0"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="primaryDevice" type="axlapi:String50" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Primary Device for mobility users</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="associatedTodAccess" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read-Only. List of the todAccess entries associated with this EndUser.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence minOccurs="0">
						<xsd:element name="todAccess" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>Name of the todAccess.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="status" type="xsd:positiveInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read Only</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="defaultProfile" type="xsd:string" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XVendorConfig">
		<xsd:sequence>
			<xsd:any namespace="##local" processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XVG224">
		<xsd:annotation>
			<xsd:documentation>The generic MGCP follows the IOS Model, but uses more generic terminology to describe the MGCP's structure.

All MGCPs have 1..n UNITs, each which contains 1..n SUBUNITs, each which contains 1..n ENDPOINTs.  ENDPOINTs are (really, contain) a DEVICE.

In the IOS model, the terminology would be SLOTs, VICs, and PORTs.  </xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="domainName" type="axlapi:String64"/>
			<xsd:element name="description" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
			<xsd:element name="protocol" type="xsd:string"/><!--This field is of the type axl:XDeviceProtocol in AXLEnums.xsd-->
			<xsd:element name="model" type="xsd:string"><!--This field is of the type axl:XModel in AXLEnums.xsd-->
				<xsd:annotation>
					<xsd:documentation>Read-only.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callManagerGroupName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="units" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The units element is optional when a new VG224 is being added  and can be added using updateVG224Gateway.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="unit">
							<xsd:annotation>
								<xsd:documentation>In the IOS model, UNIT corresponds to a SLOT (Slot Module).</xsd:documentation>
							</xsd:annotation>
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XMGCPSlotModule in AXLEnums.xsd-->
									<xsd:element name="subunits" minOccurs="0">
										<xsd:complexType>
											<xsd:sequence>
												<xsd:element name="subunit">
													<xsd:complexType>
														<xsd:annotation>
															<xsd:documentation>In the IOS model, SUBUNIT corresponds to a VIC, and a VIC contains 1 or more PORTs.</xsd:documentation>
														</xsd:annotation>
														<xsd:sequence>
															<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XMGCPVic in AXLEnums.xsd-->
															<xsd:element name="endpoints" minOccurs="0">
																<xsd:complexType>
																	<xsd:annotation>
																		<xsd:documentation>The max attribute identifies the maximum number of endpoints this endpoint list is allowed.</xsd:documentation>
																	</xsd:annotation>
																	<xsd:sequence>
																		<xsd:element name="endpoint" maxOccurs="unbounded">
																			<xsd:complexType>
																				<xsd:annotation>
																					<xsd:documentation>In the IOS model, ENDPOINT corresponds to a PORT inside a VIC.</xsd:documentation>
																				</xsd:annotation>
																				<xsd:complexContent>
																					<xsd:extension base="axlapi:XDevice">
																						<xsd:sequence minOccurs="0">
																							<xsd:element name="lines" minOccurs="0">
																								<xsd:complexType>
																									<xsd:choice>
																										<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
																										<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded"/>
																									</xsd:choice>
																								</xsd:complexType>
																							</xsd:element>
																							<xsd:sequence minOccurs="0">
																								<xsd:annotation>
																									<xsd:documentation>These tags are applicable only for MGCP.</xsd:documentation>
																								</xsd:annotation>
																								<xsd:element name="packetCaptureMode" type="xsd:string" default="None" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
																								<xsd:element name="packetCaptureDuration" type="xsd:positiveInteger" default="60" minOccurs="0"/>
																								<xsd:element name="transmitUTF8" type="xsd:boolean" nillable="false" minOccurs="0"/>
																								<xsd:element name="ports" minOccurs="0">
																									<xsd:annotation>
																										<xsd:documentation>The list of ports on the gateway.</xsd:documentation>
																									</xsd:annotation>
																									<xsd:complexType>
																										<xsd:annotation>
																											<xsd:documentation>List of analog ports on an analog gateway.</xsd:documentation>
																										</xsd:annotation>
																										<xsd:sequence>
																											<xsd:element name="port" maxOccurs="unbounded">
																												<xsd:complexType>
																													<xsd:annotation>
																														<xsd:documentation>An analog port on an analog gateway. The portNumber attribute  identifies the ordinal value of the port in the gateway.</xsd:documentation>
																													</xsd:annotation>
																													<xsd:sequence>
																														<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
																														<xsd:element name="trunkDirection" type="xsd:string"/><!--This field is of the type axl:XTrunkDirection in AXLEnums.xsd-->
																														<xsd:sequence minOccurs="0">
																															<xsd:annotation>
																																<xsd:documentation>For Gorund Start/Loop Start type of endpoint.</xsd:documentation>
																															</xsd:annotation>
																															<xsd:element name="attendantDN" type="axlapi:XDirectoryNumber"/>
																														</xsd:sequence>
																														<xsd:sequence minOccurs="0">
																															<xsd:annotation>
																																<xsd:documentation>For POTS type of endpoint.</xsd:documentation>
																															</xsd:annotation>
																															<xsd:element name="prefixDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
																															<xsd:element name="numDigits" type="xsd:nonNegativeInteger" nillable="false"/>
																															<xsd:element name="expectedDigits" type="xsd:nonNegativeInteger"/>
																															<xsd:element name="smdiPortNumber" type="xsd:nonNegativeInteger">
																																<xsd:annotation>
																																	<xsd:documentation>Not used by T1 Ports.</xsd:documentation>
																																</xsd:annotation>
																															</xsd:element>
																														</xsd:sequence>
																													</xsd:sequence>
																													<xsd:attribute name="uuid" type="axlapi:XUUID"/>
																													<xsd:attribute name="portNumber" type="xsd:positiveInteger" use="required"/>
																												</xsd:complexType>
																											</xsd:element>
																										</xsd:sequence>
																									</xsd:complexType>
																								</xsd:element>
																							</xsd:sequence>
																							<xsd:element name="userLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
																							<xsd:element name="networkLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
																							<xsd:sequence minOccurs="0">
																								<xsd:annotation>
																									<xsd:documentation>These tags are applicable only for SCCP.</xsd:documentation>
																								</xsd:annotation>
																								<xsd:element name="isActive" type="xsd:boolean" nillable="false" minOccurs="0">
																									<xsd:annotation>
																										<xsd:documentation>This tag determines if the newly added phone is active to determine consumption of license. If set to false the license units will not be consumed.</xsd:documentation>
																									</xsd:annotation>
																								</xsd:element>
																								<xsd:element name="unattendedPort" type="xsd:boolean" nillable="false" minOccurs="0"/>
																								<xsd:choice minOccurs="0">
																									<xsd:element name="subscribeCallingSearchSpace" type="axlapi:XCallingSearchSpace" nillable="true">
																										<xsd:annotation>
																											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
																								</xsd:choice>
																								<xsd:element name="allowCtiControlFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
																								<xsd:element name="remoteDevice" type="xsd:boolean" nillable="false" minOccurs="0"/>
																								<xsd:choice minOccurs="0">
																									<xsd:element name="phoneTemplate" type="axlapi:XPhoneTemplate">
																										<xsd:annotation>
																											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:element name="phoneTemplateName" type="axlapi:String50" nillable="false"/>
																								</xsd:choice>
																								<xsd:choice>
																									<xsd:element name="presenceGroup" type="axlapi:XPresenceGroup" nillable="false">
																										<xsd:annotation>
																											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:element name="presenceGroupName" type="axlapi:String50" nillable="false"/>
																								</xsd:choice>
																								<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" nillable="false" minOccurs="0">
																									<xsd:annotation>
																										<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
																									</xsd:annotation>
																								</xsd:element>
																								<xsd:element name="deviceMobilityMode" type="xsd:string" default="Default" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
																									<xsd:annotation>
																										<xsd:documentation>Specifies if the phone is configured for device mobility feature or not</xsd:documentation>
																									</xsd:annotation>
																								</xsd:element>
																								<xsd:element name="hlogStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
																								<xsd:element name="ownerUserId" type="axlapi:String255" nillable="true" minOccurs="0"/>
																							</xsd:sequence>
																							
																						</xsd:sequence>
																						<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
																					</xsd:extension>
																				</xsd:complexContent>
																			</xsd:complexType>
																		</xsd:element>
																	</xsd:sequence>
																	<xsd:attribute name="max" type="xsd:positiveInteger"/>
																</xsd:complexType>
															</xsd:element>
														</xsd:sequence>
													</xsd:complexType>
												</xsd:element>
											</xsd:sequence>
										</xsd:complexType>
										<!--VG224 SubUnits Schema Ends-->
									</xsd:element>
								</xsd:sequence>
							</xsd:complexType>
							<!--VG224 Unit Schema Ends-->
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
				<!--VG224 Units Schema Ends-->
			</xsd:element>
			<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>It contains Product Specific Configuration Information like Fax mode, Modem Passthorugh, etc.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="versionStamp" type="axlapi:String128" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Read only. UUID that is changed each time the VG224 is updated.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XVoiceMailPilot">
		<xsd:sequence minOccurs="0">
			<xsd:element name="dirn" type="axlapi:XDirectoryNumber" nillable="true"/>
			<xsd:element name="description" type="axlapi:String50" nillable="true" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="CSS" type="axlapi:XCallingSearchSpace" nillable="true">
					<xsd:annotation>
						<xsd:documentation>Only the UUID attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="CSSName" type="axlapi:String50" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The name of this Voice Mail Pilot's calling search space.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="isDefault" type="xsd:boolean" default="false" nillable="false"/>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XVoiceMailProfile">
		<xsd:sequence minOccurs="0">
			<xsd:element name="name" type="axlapi:String50" nillable="false"/>
			<xsd:element name="description" type="axlapi:String50" nillable="true" minOccurs="0"/>
			<xsd:element name="isDefault" type="xsd:boolean" default="false" nillable="false"/>
			<xsd:element name="voiceMailboxMask" type="xsd:string" nillable="true" minOccurs="0"/>
			<xsd:element name="voiceMailPilot" type="axlapi:XVoiceMailPilot" nillable="false">
				<xsd:annotation>
					<xsd:documentation>Only the UUID attribute is read by the AXL API.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="uuid" type="axlapi:XUUID"/>
	</xsd:complexType>
	<xsd:complexType name="XPilotPoint">
		<xsd:annotation>
			<xsd:documentation>Pilot Point</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:UniqueName128">
				<xsd:annotation>
					<xsd:documentation>The Pilot Point name.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:choice>
				<xsd:element name="devicePool" type="axlapi:XDevicePool">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="axlapi:UniqueString50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="routePartition" type="axlapi:XRoutePartition">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="routePartitionName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:choice minOccurs="0">
				<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="pilotNumber" type="xsd:string"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="location" type="axlapi:XLocation">
					<xsd:annotation>
						<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String50"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<!-- *********************************************************** -->
	<!-- Simple Types                                                -->
	<!-- *********************************************************** -->
	<xsd:simpleType name="XDirectoryNumber">
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="255"/>
		</xsd:restriction>

share/AXLSoap.xsd  view on Meta::CPAN

		<xsd:restriction base="xsd:nonNegativeInteger">
			<xsd:minInclusive value="0"/>
			<xsd:maxInclusive value="51"/>
		</xsd:restriction>
	</xsd:simpleType>
	<!-- *********************************************************** -->
	<!-- Rule Blocks                                                 -->
	<!-- *********************************************************** -->
	<xsd:complexType name="XRuleInstance">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:XKeyString"/>
			<xsd:element name="description" type="xsd:string" minOccurs="0"/>
			<xsd:element name="author" type="xsd:Name" minOccurs="0"/>
			<xsd:element name="rules">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="rule" type="axlapi:XRule" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XRule">
		<xsd:annotation>
			<xsd:documentation>The root of all rules.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="name" nillable="false">
				<xsd:annotation>
					<xsd:documentation>The URI name of the  rule. For example: xmlrule://cisco.com/public/isAnInteger</xsd:documentation>
				</xsd:annotation>
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:pattern value="xmlrule://\S+"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:element name="description" type="xsd:string" minOccurs="0"/>
			<xsd:element name="author" type="xsd:string" minOccurs="0"/>
			<xsd:choice>
				<xsd:annotation>
					<xsd:documentation>The "type" choice.</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="boolean" type="axlapi:XBooleanRule">
					<xsd:annotation>
						<xsd:documentation>The input must be a boolean.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="date" type="axlapi:XDateRule">
					<xsd:annotation>
						<xsd:documentation>The input must conform to a valid date format.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="float" type="axlapi:XFloatRule">
					<xsd:annotation>
						<xsd:documentation>The input must be a floating-point number.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="integer" type="axlapi:XIntegerRule">
					<xsd:annotation>
						<xsd:documentation>The input must be an integer.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="list" type="axlapi:XListRule">
					<xsd:annotation>
						<xsd:documentation>The input is a single key compared to a list.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="script" type="axlapi:XScriptRule">
					<xsd:annotation>
						<xsd:documentation>Execute a Javascript fragment.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="string" type="axlapi:XStringRule">
					<xsd:annotation>
						<xsd:documentation>The input must be a string (least restrictive).</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="uri" type="axlapi:XURIRule">
					<xsd:annotation>
						<xsd:documentation>The input must conform to a valid URI format.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="dynamicList" type="axlapi:XDynamicListRule"/>
			</xsd:choice>
			<xsd:element name="nullable" type="xsd:boolean" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Is a null value acceptable for this rule?</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="subrule" type="axlapi:XRule" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>It is possible that a rule might require additional steps of validation. To guard against loops, these subrules must be defined within this rule rather than allowing the rule to reference other rules (however, see XDisplayInst...
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="enterpriseDefaultName" type="axlapi:XKeyString" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The name of the enterprise parameter to lookup in the database and use its value as this rule's default value. Overrides the hard-coded default if defined.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XIntegerRule">
		<xsd:annotation>
			<xsd:documentation>The integer rule determines if the input is a valid integer.</xsd:documentation>
		</xsd:annotation>

share/AXLSoap.xsd  view on Meta::CPAN

					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XStringRule">
		<xsd:annotation>
			<xsd:documentation>The string rule determines if the value is a valid string.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="default" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The default value to return if none is supplied.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="regexp" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>A regular expression to compare the string against.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="length" type="xsd:integer" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The maximum length allowed.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="trimWhiteSpace" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>A flag which states the rule processors should trim/ignore white space from the input before all other processing.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="onValidationErrorShowMessage" type="xsd:string" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XFloatRule">
		<xsd:annotation>
			<xsd:documentation>The float rule determines if a value is a valid floating point number.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="default" type="xsd:float" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The default value if none is supplied.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="min" type="xsd:float" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The minimum acceptable value.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="max" type="xsd:float" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The maximum acceptable value.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XListRule">
		<xsd:annotation>
			<xsd:documentation>The List Rule expresses the correct values of a list (key/value pairs), what the default key value is, and if selecting multiple keys is valid for the list.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="defaultKey" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>What is the default key?</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="multiKey" type="xsd:boolean" default="false">
				<xsd:annotation>
					<xsd:documentation>Can multiple keys be selected?</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="options">
				<xsd:annotation>
					<xsd:documentation>Each option is expressed as a key/value pair. Rule processors should only compare against the key attributes. The value of each option is simply for display.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="option" type="axlapi:XListRuleOption" maxOccurs="unbounded"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XListRuleOption" mixed="false">
		<xsd:attribute name="key" type="axlapi:XKeyString" use="required"/>
		<xsd:attribute name="text" type="xsd:string" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="XDynamicListRule">
		<xsd:annotation>
			<xsd:documentation>The Dynamic list rule determines the table and columns to build the list from</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="defaultKey" type="xsd:string" minOccurs="0"/>
			<xsd:element name="tableName" type="axlapi:Name50" nillable="false"/>
			<xsd:element name="keyFieldName">
				<xsd:complexType>
					<xsd:choice>
						<xsd:element name="integerFieldName" type="axlapi:Name50"/>
						<xsd:element name="stringFieldName" type="axlapi:Name50"/>
					</xsd:choice>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="descFieldName" type="axlapi:Name50"/>
			<xsd:element name="Multikey" type="xsd:boolean"/>
			<xsd:element name="filter" type="xsd:string" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XDateRule">
		<xsd:annotation>
			<xsd:documentation>Directs the rule processor to validate the input as a date. Valid date formats are Any, Long (March 15, 2001), Short-US (the default, 03/15/01), and Short-EU (15/03/01).</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="dateFormat" default="Short-US" minOccurs="0">
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">

share/AXLSoap.xsd  view on Meta::CPAN

						<xsd:enumeration value="Long"/>
						<xsd:enumeration value="Short-US"/>
						<xsd:enumeration value="Short-EU"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
			<xsd:choice minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The default is either a specific date (default), or automatically defaulted to today (defaultNow).</xsd:documentation>
				</xsd:annotation>
				<xsd:element name="default" type="xsd:date"/>
				<xsd:element name="defaultNow" type="xsd:boolean"/>
			</xsd:choice>
			<xsd:element name="min" type="xsd:date" minOccurs="0"/>
			<xsd:element name="max" type="xsd:date" minOccurs="0"/>
			<xsd:element name="restrictTo" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Should the rule make sure that the date is not in the future?</xsd:documentation>
				</xsd:annotation>
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:enumeration value="Past"/>
						<xsd:enumeration value="Future"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XBooleanRule">
		<xsd:sequence>
			<xsd:element name="default" type="xsd:boolean"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XScriptRule">
		<xsd:annotation>
			<xsd:documentation>The input is evaluated by a fragment of JavaScript.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="comment" type="xsd:string"/>
			<xsd:element name="script">
				<xsd:annotation>
					<xsd:documentation>The JavaScript fragment used to evaluate the input. The fragment should be cordoned off by CDATA tags. The fragment must contain a entry-point function with the following prototype:

Array AXLScriptRuleEntryPoint(String inputString)

The output is an Array of two values. Array[0] is a boolean value and indicates success (true) or failure (false). Array[1] contains the result of the script. If successful, it should contain a copy of the inputString or other valid return value. If ...
</xsd:documentation>
				</xsd:annotation>
				<xsd:simpleType>
					<xsd:restriction base="xsd:string">
						<xsd:whiteSpace value="preserve"/>
					</xsd:restriction>
				</xsd:simpleType>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XURIRule">
		<xsd:annotation>
			<xsd:documentation>The URI rule determines if a value is a valid URI.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="default" type="xsd:anyURI" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="XRuleError">
		<xsd:annotation>
			<xsd:documentation>The XML format for a rule error that might be thrown by a rule processor.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="invalidValue" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation>Contains the value of the original input.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="ruleBroken" type="xsd:Name">
				<xsd:annotation>
					<xsd:documentation>The name of the rule broken.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="errorCode" type="xsd:integer" default="0">
				<xsd:annotation>
					<xsd:documentation>An integer error code.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="errorText" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation>Error message generated by rule.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<!-- *********************************************************** -->
	<!-- Service Dependency objects                                 -->
	<!-- *********************************************************** -->
	<xsd:complexType name="XServiceDependency">
		<xsd:annotation>
			<xsd:documentation>This lists what services that the specified service is dependent on.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="name" type="xsd:anyURI">
				<xsd:annotation>
					<xsd:documentation>The URI of this service dependency. For example: xmldi://cisco.com/serviceDependency/0.  The last part of the URI is the enum value of this service.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="dependencies">
				<xsd:annotation>
					<xsd:documentation>A list of zero or more services that this service depends on.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="dependency" type="xsd:nonNegativeInteger" minOccurs="0" maxOccurs="unbounded">
							<xsd:annotation>
								<xsd:documentation>This is the value of the 'enum' column from the TypeService table.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="help" type="axlapi:String1024" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Help text. Optional.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="warning" type="axlapi:String1024" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The warning message. Optional</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="service" type="xsd:nonNegativeInteger" use="required">
			<xsd:annotation>
				<xsd:documentation>This is the service we are listing dependencies for.</xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>
	<!-- *********************************************************** -->
	<!-- Simple String/Name Restrictions                             -->
	<!-- *********************************************************** -->
	<xsd:simpleType name="Name50">
		<xsd:restriction base="xsd:Name">

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Success"/>
         <xsd:enumeration value="Failure"/>
         <xsd:enumeration value="Invalid range for directory numbers"/>
         <xsd:enumeration value="Not yet implemented. See log for more detail"/>
         <xsd:enumeration value="Model and class are not compatible.  See log for more detail"/>
         <xsd:enumeration value="Missing/invalid parameters. See log for more detail"/>
         <xsd:enumeration value="Device does not suppport MLPP"/>
         <xsd:enumeration value="Device does not support preemption"/>
         <xsd:enumeration value="User is not a valid end user or application user"/>
         <xsd:enumeration value="Missing default phone template"/>
         <xsd:enumeration value="Encountered unexpected database datatype.  See log for more detail"/>
         <xsd:enumeration value="Updated failed. A required item was not found in the database"/>
         <xsd:enumeration value="The Cisco CallManager Group cannot be deleted because it is used by related records. Click Dependency Records to view related records and remove this Cisco CallManager Group from any item that is using it then try aga...
         <xsd:enumeration value="One or more Cisco CallManager Groups could not be deleted because it is used by related records. Select a Cisco CallManager Group and click the Dependancy Records link on the Cisco CallManager Configuration page to se...
         <xsd:enumeration value="Cannot create DNs or duplicate DNs for the ports. Please check if a DN range is available."/>
         <xsd:enumeration value="Partition name cannot be empty string."/>
         <xsd:enumeration value="Change failed - Current Password is incorrect."/>
         <xsd:enumeration value="Change failed - New Password does not match Confirm Password."/>
         <xsd:enumeration value="Change failed - Current PIN is incorrect."/>
         <xsd:enumeration value="Change failed - New PIN does not match Confirm PIN."/>
         <xsd:enumeration value="Fastdials index already in use. Please choose another index."/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Expired Lock."/>
         <xsd:enumeration value="Expired Lock (with ability to change)."/>
         <xsd:enumeration value="End user status is INACTIVE in LDAP."/>
         <xsd:enumeration value="LDAP authentication enabled. UpdateCredential failure."/>
         <xsd:enumeration value="Invalid credential length."/>
         <xsd:enumeration value="Trivial credential."/>
         <xsd:enumeration value="Duplicate credential."/>
         <xsd:enumeration value="Too recently used Credential."/>
         <xsd:enumeration value="User does not have permission to change this credential."/>
         <xsd:enumeration value="There is no credential value for the given credential name."/>
         <xsd:enumeration value="There is no credential type for the given credential name."/>
         <xsd:enumeration value="LDAP communication error. Please check log file."/>
         <xsd:enumeration value="User type not defined. Please check log file."/>
         <xsd:enumeration value="Failed to update Credential. Please check log file."/>
         <xsd:enumeration value="Not a valid application user. Please check log file."/>
         <xsd:enumeration value="Database communication error. Please check log file."/>
         <xsd:enumeration value="Invalid credential information. Please check log file."/>
      </xsd:restriction>
   </xsd:simpleType>

   <xsd:simpleType name="XAlarmSeverity">
      <xsd:restriction base="xsd:string">
         <xsd:enumeration value="Emergency"/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Success"/>
         <xsd:enumeration value="A multi-field uniqueness has been violated on this table.  A combination of 2 or more columns on a table that need to be unique together are not."/>
         <xsd:enumeration value="Checkout or checkin successful"/>
         <xsd:enumeration value="Checkout or checkin successful using OVERDRAFT"/>
         <xsd:enumeration value="Phone cannot have the same line more than once (duplicate NumPlanIndex)"/>
         <xsd:enumeration value="Sum of device's line appearance values for maxNumCalls exceed device limitation"/>
         <xsd:enumeration value="A line's busy trigger cannot exceed its maxNumCalls setting"/>
         <xsd:enumeration value="Post-insert validation of pkid and isCallable in NumPlan failed"/>
         <xsd:enumeration value="Update of NumPlan to isCallable = TRUE failed"/>
         <xsd:enumeration value="Automatic update of CTIID during insert into DeviceNumPlanMap failed due to overflow"/>
         <xsd:enumeration value="Busy Trigger cannot be greater than 1 because the specified device type does not support Call Waiting"/>
         <xsd:enumeration value="A DN cannot be associated with this type of Device"/>
         <xsd:enumeration value="A DN cannot be associated with the whole GW only a particular port"/>
         <xsd:enumeration value="An RP cannot be associated with this type of Device"/>
         <xsd:enumeration value="An RP can be associated with the whole GW only and not a particular port"/>
         <xsd:enumeration value="An RP can be associated with only a single device of this type"/>
         <xsd:enumeration value="The Device is already a member of a Route Group"/>
         <xsd:enumeration value="Devices can only be associated with DNs, Route Patterns and Hunt Pilots"/>
         <xsd:enumeration value="CTI Ports and CTI Route Points may not be associated with DNs that are in Line Groups"/>
         <xsd:enumeration value="Shared Line feature is not supported"/>
         <xsd:enumeration value="Shared Line is only for DNs"/>
         <xsd:enumeration value="Ring Setting only valid when phone is off hook"/>
         <xsd:enumeration value="Auto Answer feature is not supported for this device"/>
         <xsd:enumeration value="The Dial Plan of the RouteList should match that of the associated Route Pattern"/>
         <xsd:enumeration value="The Gateway already has port(s) assigned to a DN"/>
         <xsd:enumeration value="The entire Gateway i.e all ports already assigned to a Route Pattern"/>
         <xsd:enumeration value="Maximum calls must be less than or equal to 2 if Multiple Call Display not supported"/>
         <xsd:enumeration value="Failure attempting to update isCallable in numbering plan"/>
         <xsd:enumeration value="An HP cannot be associated with this type of Device"/>
         <xsd:enumeration value="An HP can be associated with only a single device of type Hunt List"/>
         <xsd:enumeration value="A device_template patternusage can only be associated with device of typeclass template"/>
         <xsd:enumeration value="Message Waiting Lamp Policy not supported for this device"/>
         <xsd:enumeration value="Ring Settings for this line are not supported for this device"/>
         <xsd:enumeration value="DN assigned CAT6K FXS port not shareable"/>
         <xsd:enumeration value="DN assigned to MWI cannot be shared"/>
         <xsd:enumeration value="This device does not support the Pickup Alert feature."/>
         <xsd:enumeration value="The retrieval code (Prefix + Park Code) already exists."/>
         <xsd:enumeration value="The retrieval code record for Directed Call Park cannot be edited directly"/>
         <xsd:enumeration value="Audible Message Waiting Indicator is not supported on the device where this line appears"/>
         <xsd:enumeration value="Recording is not supported on the device where this line appears"/>
         <xsd:enumeration value="Monitoring is not supported on the device where this line appears"/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="The CSS cannot be deleted since gateway(s) is associated with it and useDevicePoolCdpnTransformCSS is false"/>
         <xsd:enumeration value="The CSS cannot be deleted since phone(s) is associated with it and useDevicePoolCgpnTransformCSS is false"/>
         <xsd:enumeration value="Uniqueness check of pilotNumber + CSSID failed"/>
         <xsd:enumeration value="Uniqueness check of Pilot IsDefault = 1 failed"/>
         <xsd:enumeration value="Attempt to delete required VM Pilot record; the value of IsDefault = 1"/>
         <xsd:enumeration value="Attempt to delete system installed VM Pilot record"/>
         <xsd:enumeration value="Uniqueness check of Profile IsDefault = 1 failed"/>
         <xsd:enumeration value="Attempt to delete required VM Profile record; the value of IsDefault = 1 "/>
         <xsd:enumeration value="Attempt to delete system installed VM Profile record"/>
         <xsd:enumeration value="There is another End User already associated with this device as the Digest User (Digest In)"/>
         <xsd:enumeration value="You can not change Association type of this Primary Device association."/>
         <xsd:enumeration value="You can not change End user of Primary Device association."/>
         <xsd:enumeration value="Device is already associated with another End User as Primary device"/>
         <xsd:enumeration value="There is another device already associated with this End User as Primary device"/>
         <xsd:enumeration value="This device does not qualify as a Mobility Primary device."/>
         <xsd:enumeration value="Encountered digest user is already configured with other SIP device. Digest user can be configured either on one third party basic or advanced SIP device or on mutiple Cisco SIP devices."/>
         <xsd:enumeration value="Device ID not found"/>
         <xsd:enumeration value="Profile ID not found"/>
         <xsd:enumeration value="Login Device does not support extension mobility"/>
         <xsd:enumeration value="Device EM not enabled"/>
         <xsd:enumeration value="No LOGOUT device profile, login/logout not allowed"/>
         <xsd:enumeration value="ADP is out-of-syn, login not allowed"/>
         <xsd:enumeration value="No default model profile, no mismatch login performed"/>
         <xsd:enumeration value="Attempt to update tkClass failed"/>
         <xsd:enumeration value="Attempt to insert record into MGCP failed"/>
         <xsd:enumeration value="Attempt to insert into MGCPDeviceMember failed"/>
         <xsd:enumeration value="Attempt to update MGCP VersionStamp failed"/>
         <xsd:enumeration value="Attempt to update Device VersionStamp failed"/>
         <xsd:enumeration value="Automatic update of CTIID during insert into Device table failed due to overflow"/>
         <xsd:enumeration value="The Class type for this model device was not found"/>
         <xsd:enumeration value="The Model type for the specified Product type was not found"/>
         <xsd:enumeration value="No DigitalAccessPri entry found for this device"/>
         <xsd:enumeration value="An invalid QSIG configuration was detected for this device"/>
         <xsd:enumeration value="Attempt to update the MGCP Slot configuration for new MGCP device failed"/>
         <xsd:enumeration value="Cannot make changes to OR delete a device while a user is logged in"/>
         <xsd:enumeration value="Route List Enabled can be true only for Route List devices"/>
         <xsd:enumeration value="Network Hold Audio Source can only be used for devices that support the Music On Hold feature"/>
         <xsd:enumeration value="User Hold Audio Source can only be used for devices that support the Music On Hold feature"/>
         <xsd:enumeration value="Only devices that support Video feature may set the Retry Video Call As Audio setting to false"/>
         <xsd:enumeration value="The specified Device Protocol is not valid for this device"/>
         <xsd:enumeration value="The specified Protocol Side is not valid for this device"/>
         <xsd:enumeration value="MLPP Preemption must be disabled on devices that do not support the MLPP Preemption feature."/>
         <xsd:enumeration value="MLPP Indication must be off on devices that do not support the MLPP Indication feature."/>
         <xsd:enumeration value="Only devices that support Localization feature use the User Locale setting"/>
         <xsd:enumeration value="Extension Mobilty can only be turned on for devices that support Extension Mobility feature."/>
         <xsd:enumeration value="AAR Group OR AAR Calling Search Space can only be used for devices that support the AAR feature."/>
         <xsd:enumeration value="Device Profile can only be created for devices that support Extension Mobility feature."/>
         <xsd:enumeration value="Softkey Template is not valid for this type of device."/>
         <xsd:enumeration value="Login Duration is valid only for devices that support Extension Mobility feature."/>
         <xsd:enumeration value="Login Time is valid only for devices that support Extension Mobility feature."/>
         <xsd:enumeration value="Automatic delete of auto-generated Device record failed"/>
         <xsd:enumeration value="Device name format is not correct for this mgcp device"/>
         <xsd:enumeration value="Security Profile is required for this device"/>
         <xsd:enumeration value="Security Profile is not supported for this device"/>
         <xsd:enumeration value="SRTP and Outbound Fast Start cannot be enabled at the same time."/>
         <xsd:enumeration value="Device does not support security encryption"/>
         <xsd:enumeration value="Device does not support security authentication"/>
         <xsd:enumeration value="SIP Dial Rules are not compatible with non-SIP devices."/>
         <xsd:enumeration value="The SIP Dial Rule type is not compatible with this device type."/>
         <xsd:enumeration value="Duplicate E.164 address for gatekeeper-controlled H.323 device."/>
         <xsd:enumeration value="Cannot set DTMF Signaling Method to OOB "/>
         <xsd:enumeration value="User Defined Device Profile cannot be deleted if it is in use. "/>
         <xsd:enumeration value="Only one device default profile is allowed per model."/>
         <xsd:enumeration value="There is at least one device that has extension mobility enabled for this model, device default profile cannot be deleted."/>
         <xsd:enumeration value="The model and protocol of the Extension Mobility Logout Profile do not match the model and protocol of the device."/>
         <xsd:enumeration value="This device does not support Passing Precedence Level Through UUIE."/>
         <xsd:enumeration value="Max number of phones in cluster has been exceeded for install type."/>
         <xsd:enumeration value="Feature DND is not supported for this device."/>
         <xsd:enumeration value="Device does not support selected DND Option."/>
         <xsd:enumeration value="Cannot delete the IP Media Streaming software devices installed on a server by default."/>
         <xsd:enumeration value="Device Outbound Call Rollover Feature Restriction."/>
         <xsd:enumeration value="The specified Security Profile is not valid for this device type (model and protocol)."/>
         <xsd:enumeration value="The Server Based Software Device cannot be deleted."/>
         <xsd:enumeration value="Outbound Faststart cannot be enabled. Outbound Faststart requires an MTP and a hardware Transcoder configured through a Media Resource Group List for the device."/>
         <xsd:enumeration value="Only devices that support Join Across Lines feature use the Join Across Lines setting"/>
         <xsd:enumeration value="Only devices that support Single Button Barge feature use the Single Button Barge setting"/>
         <xsd:enumeration value="sRPT cannot be used on a SIP trunk with Security Mode of Authenticated."/>
         <xsd:enumeration value="TKPresentationBit ConnectedLine cannt be enabled. TKPresentationBit ConnectedLine requires IsRPIDEnabled to be set to True."/>
         <xsd:enumeration value="TKPresentationBit ConnectedName cannt be enabled. TKPresentationBit ConnectedName requires IsRPIDEnabled to be set to True."/>
         <xsd:enumeration value="Security Profile used by a device cannot be a CUMA security policy."/>
         <xsd:enumeration value="fkCalledSearchSpace_cdpnTransform is not allowed for FXS ports"/>
         <xsd:enumeration value="Phone Personalization feature is not supported on the specified device type."/>
         <xsd:enumeration value="National, International and Subscriber Prefixes must be empty for SIP trunks"/>
         <xsd:enumeration value="Only H225 trunk (gatekeep controlled) and SIP trunk can have non-zero Allocated License Unit"/>
         <xsd:enumeration value="Remote Destination Profile and Dual Mode Device can only have Call Reject DND option"/>
         <xsd:enumeration value="IsProtected setting can only be true for devices supporting secure tone feature "/>
         <xsd:enumeration value="Security Profile used with Protected device must be secure (encrypted)"/>
         <xsd:enumeration value="Protected device does not support shared line and all lines on a protected device must have max calls (and busy trigger) set to 1."/>
         <xsd:enumeration value="Device does not support SmartClient feature. "/>
         <xsd:enumeration value="Remote Cisco Unified Communications Manager is already defined for other ICT Trunk."/>
         <xsd:enumeration value="Cannot add more than one IP Media Streaming software devices per type (CFB,MOH,ANN,SVR) per server."/>
         <xsd:enumeration value="Cannot use QSIG Variant or ASN1 Rose OID Encoding because QSIG is not enabled for this device. Enable QSIG protocol or tunneling and try again."/>
         <xsd:enumeration value="Attempted to insert an invalid product into the device table. Make sure the product is an endpoint device and try again."/>
         <xsd:enumeration value="The specified name has invalid characters or is not formatted correctly for this device type."/>
         <xsd:enumeration value="The autogenerated profile name has invalid characters or is not formatted correctly for this device type."/>
         <xsd:enumeration value="The specified name has invalid characters or is not formatted correctly for this type of device, profile or template."/>
         <xsd:enumeration value="Gatekeeper table may only reference devices that are Gatekeepers (model = 122)"/>
         <xsd:enumeration value="Failure attempting to insert into Region table"/>
         <xsd:enumeration value="URI as a BLF Speed-dial Destination is not allowed for this device with this protocol."/>
         <xsd:enumeration value="BLF Destination does not appear to be a valid URI for dialing."/>
         <xsd:enumeration value="BLF Destination does not appear to be dialable."/>
         <xsd:enumeration value="BLF Directed Call Park number must be of type Directed Call Park."/>
         <xsd:enumeration value="BLF Directed Call Park number must be dialable. Numeric Digits (0-9), asterisks (*), and pound(#) are allowed characters."/>
         <xsd:enumeration value="The subnet mask is out of range, the first octet value is 223 or less."/>
         <xsd:enumeration value="Subnet mask and mask size do not match."/>
         <xsd:enumeration value="Failure attempting to insert into RegionMatrix table"/>
         <xsd:enumeration value="User must override the default Bandwidth and Video Bandwidth settings"/>
         <xsd:enumeration value="No appropriate base product type value found in Mgcp table"/>
         <xsd:enumeration value="Propgation of MgcpDeviceMember values to Device table failed"/>
         <xsd:enumeration value="Automatic update of Device name failed after MGCP port value update"/>
         <xsd:enumeration value="Cannot change from Qsig to non_Qsig if this gateway is in a route group"/>
         <xsd:enumeration value="DigitalAccessPri table may only reference devices with matching Device Protocol (DigitalAccessPri)"/>
         <xsd:enumeration value="Attempt to change device Qsig value failed"/>
         <xsd:enumeration value="E1 gateway can not have g.clear enabled."/>
         <xsd:enumeration value="G.Clear is not supported on the PRI interface on this type of gateway."/>
         <xsd:enumeration value="Failure attempting to insert into AARDialPrefixMatrix table"/>
         <xsd:enumeration value="The standard locations should not be deleted and the configration for the standard location should not be modified other than RSVP policy configurations."/>
         <xsd:enumeration value="Failure attempting to update CSS Clause after update in CSSMember table"/>
         <xsd:enumeration value="Members of a calling search space must be of the same partition type"/>
         <xsd:enumeration value="Cannot modify or delete the installed Default Credential Policy."/>
         <xsd:enumeration value="Automatic update of CTIID during insert into CallManager table failed due to overflow"/>
         <xsd:enumeration value="CallManager SIP Port cannot match any existing CallManager(s) SIP Secured Port"/>
         <xsd:enumeration value="CallManager SIP Secured Port cannot match any existing CallManager(s) SIP Port"/>
         <xsd:enumeration value="Failure to insert phone button records for new phone template"/>
         <xsd:enumeration value="Failure attempting to add user-definable buttons to PhoneButton table"/>
         <xsd:enumeration value="Phone Template may only be assigned to devices that support the phone template feature"/>
         <xsd:enumeration value="Extension Mobility login failed - phone button template protocol (SCCP/SIP) mismatch"/>
         <xsd:enumeration value="Failure attempting to reconstruct the SoftKeyTemplate table SoftKeySetClause"/>
         <xsd:enumeration value="Failure attempting to reconstruct the SoftKeyTemplate table SoftKeyClause"/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="You cannot delete this SoftKey Template because it is the default SoftKey Template."/>
         <xsd:enumeration value="Failure in triggered insert of new record(s) into SoftkeySet during insert of new SoftkeyTemplateServiceMap record"/>
         <xsd:enumeration value="Attempt to delete a Standard template denied. Only user-defined templates may be deleted"/>
         <xsd:enumeration value="Attempt to directly delete last service for this user template from SoftkeyTemplateServiceMap table denied"/>
         <xsd:enumeration value="Attempt to delete CallManager service denied. CallManager is an essential service"/>
         <xsd:enumeration value="Failure attempting to update the Qsig value in RouteGroup"/>
         <xsd:enumeration value="Cannot mix H323 or Mixed Non-QSIG with PRI QSIG"/>
         <xsd:enumeration value="Invalid Qsig configuration: at least one QSIG variety must be declared"/>
         <xsd:enumeration value="The selected device or pattern is already associated with a Route Pattern"/>
         <xsd:enumeration value="Only individual ports or the whole GW can be assigned to a Route Group. Not both."/>
         <xsd:enumeration value="Failure attempting to update a device QSIG type value"/>
         <xsd:enumeration value="No such route group defined for this route list"/>
         <xsd:enumeration value="No such device defined for this route list"/>
         <xsd:enumeration value="An invalid QSIG configuration was detected for this Route List"/>
         <xsd:enumeration value="User attempted delete of a mapped RouteList entry not allowed. Must delete the Device from the Device table"/>
         <xsd:enumeration value="RouteList table may only reference Route List devices"/>
         <xsd:enumeration value="HuntList table may only reference Hunt List devices"/>
         <xsd:enumeration value="Digit discard instruction in a Route List, needs that its Dial Plan match that of the corresponding Device"/>
         <xsd:enumeration value="Failure attempting automatic insert of Process Node Service records occuring on insert of Process Node record"/>
         <xsd:enumeration value="An IP address from input or from a resolved host name is already in use"/>
         <xsd:enumeration value="Encountered an invalid hostname: Server name can be an IP address or hostname. Hostname must be at least 2 characters and no more than 63,should contains only letters, numbers,dots and dashes,and end with only a lette...
         <xsd:enumeration value="Encountered an invalid IP address"/>
         <xsd:enumeration value="Invalid IPv4 address format: requires 4 octets separated by periods"/>
         <xsd:enumeration value="The publisher sever entry cannot be deleted"/>
         <xsd:enumeration value="Max number of servers in cluster has been exceeded for install type."/>
         <xsd:enumeration value="Server Name contains invalid characters. Server name can be an IP address or hostname. Hostname must be at least 2 characters and no more than 64."/>
         <xsd:enumeration value="Failure attempting automatic insert Alarm Configuration records occuring on insert of Process Node Service record"/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, No DevicePool record exists to assign to these devices."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, No Server record exists to assign to these devices."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, Insert of software MTP device failed."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, Insert of media mixer record failed."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, Insert of software CFB device failed."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, Insert of tone annunciator device failed."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, Insert of MOH device failed."/>
         <xsd:enumeration value="Failure attempting automatic insert of Media Streaming devices, Insert of MOHServer record failed."/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="A requested multicast IP port is either an odd number or beyond the allowed range (16384-32766)"/>
         <xsd:enumeration value="Attempt to add a new Audio Source record into an auxiliary table failed"/>
         <xsd:enumeration value="Attempt to delete an Audio Source record from an auxiliary table failed"/>
         <xsd:enumeration value="Invalid IP Address"/>
         <xsd:enumeration value="All Multicast IP Addresses must be in the range 224.0.1.0 to 239.255.255.255"/>
         <xsd:enumeration value="Multicast Base Port number must be an even number in the range 16384 to 32766"/>
         <xsd:enumeration value="MOHServer table may only reference MOH Server devices"/>
         <xsd:enumeration value="Two MOH Servers cannot use the same Multicast Base IP Address and Port Number"/>
         <xsd:enumeration value="Cannot insert additional Add-on Modules for this device"/>
         <xsd:enumeration value="Failure attempting to automatically re-number devices in the database"/>
         <xsd:enumeration value="Expansion Modules can not be of mixed types"/>
         <xsd:enumeration value="This type of expansion module is not supported by this device."/>
         <xsd:enumeration value="Duplicate End User or System Time Schedule Name. A Time Schedule with this name already exists for the specified user"/>
         <xsd:enumeration value="Cannot modify or delete the Time Schedule for All the time."/>
         <xsd:enumeration value="Duplicate End User or System Time Period Name. A Time Period with this name already exists for the specified user"/>
         <xsd:enumeration value="Cannot modify or delete the Time Period for All the time."/>
         <xsd:enumeration value="Day of week should be different for each Time Period in an End User Time Schedule."/>
         <xsd:enumeration value="Failure attempting to automatically update Device name after MGCP Domain name change"/>
         <xsd:enumeration value="The specified distribution algorithm is not valid for Route and Line Groups"/>
         <xsd:enumeration value="Cannot delete or modify Standard Local Route Group"/>
         <xsd:enumeration value="AnalogAccess table may only reference devices with matching Device Protocol (AnalogAccess)"/>
         <xsd:enumeration value="AnalogAccessPort table may only reference devices with matching Device Protocol (AnalogAccess)"/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="DigitalAccessT1 table may only reference devices with matching Device Protocol (DigitalAccessT1)"/>
         <xsd:enumeration value="DigitalAccessT1Port table may only reference devices with matching Device Protocol (DigitalAccessT1)"/>
         <xsd:enumeration value="User-defined SRST records must use the corresponding SRST Option"/>
         <xsd:enumeration value="Cannot delete the system installed SRST records"/>
         <xsd:enumeration value="Telecaster table may only reference devices that support IP Phone Services"/>
         <xsd:enumeration value="The specified feature is not available for this model and protocol"/>
         <xsd:enumeration value="Pilot table may only reference CTI Route Point devices"/>
         <xsd:enumeration value="Cannot associate Speed Dials with a device that does not support phone templates or abbreviated dial features"/>
         <xsd:enumeration value="The specified Address Book entry is not avaiable in the user''s Personal Address Book"/>
         <xsd:enumeration value="The Fast Dial Index for this Phone Book entry is not unique"/>
         <xsd:enumeration value="Cannot have more than one number of each type (Home, Work, Mobile) associated with a Personal Address Book entry"/>
         <xsd:enumeration value="Only one record with same fastdialindex and fkenduser can exist"/>
         <xsd:enumeration value="NickName cannot be a NULL or empty string"/>
         <xsd:enumeration value="The specified DN or pattern evaluates to more than the maximum allowable 48 digits for this pattern usage"/>
         <xsd:enumeration value="Encountered more characters than allowed in the submitted DnOrPattern string"/>
         <xsd:enumeration value="The specified DN or pattern evaluates to more than the maximum allowable 24 digits for this pattern usage"/>
         <xsd:enumeration value="Pattern has to be unique in a Route Partition unless associated with a Dial Plan"/>
         <xsd:enumeration value="Digit Discard Instruction must be associated with the current DN's Dial Plan"/>
         <xsd:enumeration value="Route Filter must be associated with the current DN's Dial Plan"/>
         <xsd:enumeration value="Attempt to delete a Call Pickup record still in use"/>
         <xsd:enumeration value="Improper values for IP CIDR address"/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Slot value is not supported for this gateway"/>
         <xsd:enumeration value="This Slot Module is not allowed at the current slot position for this gateway"/>
         <xsd:enumeration value="This VIC card is not allowed for this gateway, under specified slot position and SlotModule"/>
         <xsd:enumeration value="The specified slot and subunit are already defined for this MGCP gateway."/>
         <xsd:enumeration value="AppUser Name already exists as an EndUser Userid. AppUser Name cannot be the same as an EndUser's userid"/>
         <xsd:enumeration value="EndUser userid already exists as an AppUser Name. EndUser userid cannot be the same as an AppUsers name."/>
         <xsd:enumeration value="EndUser cannot be inserted because Corporate LDAP directory is the sync master. Add users in the corporate directory."/>
         <xsd:enumeration value="EndUser cannot be deleted because Corporate LDAP directory is the sync master. Remove users from the corporate directory."/>
         <xsd:enumeration value="Cannot reduce Remote Destination Limit below the number of currently configured Remote Destinations for the EndUser."/>
         <xsd:enumeration value="The encrypted form of the password is too large to be stored. Use a shorter or less complex password."/>
         <xsd:enumeration value="Only one application server per type can be configured with the localdomain definition."/>
         <xsd:enumeration value="The .localdomain suffix is required and cannot be removed from Cisco Unity Connection AppServer name."/>
         <xsd:enumeration value="Another Application Server with this name already exists. Please check the Application Server Find/List page to verify your entry does not exist or use a different name."/>
         <xsd:enumeration value="A Server with this name already exists as Cisco UCM Server. Please check the Server Find/List page to verify your entry does not exist or use a different name."/>
         <xsd:enumeration value="Cannot have more than 100 IP Phone Service subscriptions on a device"/>
         <xsd:enumeration value="Cannot subscribe to IP Phone Service that is an Enterprise Subscription service"/>
         <xsd:enumeration value="Duplicate Number Plan entries for this Pilot record"/>
         <xsd:enumeration value="If NumPlan is null, then PilotUser and DeviceLine must contain values"/>
         <xsd:enumeration value="If NumPlan is not null, then PilotUser and DeviceLine must not contain entries"/>
         <xsd:enumeration value="PilotUser, device line index, and pilot must be unique"/>
         <xsd:enumeration value="Only one record with alwaysroute true is allowed for a particular fkpilot"/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Model/device protocol supports TCP therefore Transport Type cannot be TLS"/>
         <xsd:enumeration value="Model/device protocol does not support TCP therefore Transport Type must be UDP"/>
         <xsd:enumeration value="The value for Exclude Digest Credentials must be set to false"/>
         <xsd:enumeration value="The value for Enable Digest Authentication must be set to false"/>
         <xsd:enumeration value="The value for TFTP Encrypted must be set to false"/>
         <xsd:enumeration value="The value for Model Type must be configured"/>
         <xsd:enumeration value="The value for Protocol Type must be configured"/>
         <xsd:enumeration value="The Security Profile must be Encrypted and TLS because another device is using this profile which has SRTP enabled"/>
         <xsd:enumeration value="Only 1 CUMA Server SecurityProfile is allowed"/>
         <xsd:enumeration value="Device security Mode is required for CUMA security profile."/>
         <xsd:enumeration value="CUMA security profile incoming transport type must use TCP for non secure mode."/>
         <xsd:enumeration value="CUMA security profile transport type must use TLS for secure mode."/>
         <xsd:enumeration value="X.509 subject name can not be empty if transport type use TLS."/>
         <xsd:enumeration value="The URL needs to begin with either http:// or https://"/>
         <xsd:enumeration value="The URL hostname should be a valid hostname or IP address, with an optional port value"/>
         <xsd:enumeration value="Cannot add parameters to an IP Phone Service that is an EnterpriseSubscription service. Include all parameters in the Service URL"/>
         <xsd:enumeration value="Remote Destination can not be empty."/>
         <xsd:enumeration value="Remote Destination must be a phone number or URI."/>
         <xsd:enumeration value="Cannot use a Blocked type list for fkCallerFilterList_Allowed"/>
         <xsd:enumeration value="Cannot use an Allowed type list for fkCallerFilterList_Blocked"/>
         <xsd:enumeration value="Check the type of device specified in fkDevice_DualMode. Remote Destionations other than Dual Mode must use fkDevice_RemoteDestinationTemplate."/>
         <xsd:enumeration value="The specified Remote Destination already exists."/>
         <xsd:enumeration value="CallerFilterList must belong to same EndUser as the Remote Destination."/>
         <xsd:enumeration value="A Dual Mode remote destination already exists for this device."/>
         <xsd:enumeration value="Remote Destination must reference a Remote Destionation Profile or Dual Mode device."/>
         <xsd:enumeration value="Remote Destination cannot be added because there is no associated EndUser for this dual-mode phone, Remote Destination Profile or MobileSmartClient."/>
         <xsd:enumeration value="Remote Destination cannot be added because the associated EndUser does not have Mobilty Enabled."/>
         <xsd:enumeration value="Remote Destination cannot be added because the Remote Destination Limit set by Administrator for this EndUser account has already been reached."/>
         <xsd:enumeration value="A MobileSmartClient can only be associated with a single Remote Destination."/>
         <xsd:enumeration value="Cannot have more than 1000 members in a Caller Filter List."/>
         <xsd:enumeration value="Cannot have more than 250 CallerFilterLists for an EndUser."/>

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Extension Mobility"/>
         <xsd:enumeration value="Show Speeddial Labels"/>
         <xsd:enumeration value="Show Forward on Failure"/>
         <xsd:enumeration value="Has firmware load"/>
         <xsd:enumeration value="Has phone templates"/>
         <xsd:enumeration value="Media Resource Managed"/>
         <xsd:enumeration value="CTI controlled"/>
         <xsd:enumeration value="Phone template is User Modifiable"/>
         <xsd:enumeration value="Localization"/>
         <xsd:enumeration value="Has softkey template"/>
         <xsd:enumeration value="Supports different port types for FXO module"/>
         <xsd:enumeration value="Phone attached to a Gateway (Like Chalice)"/>
         <xsd:enumeration value="Automated Alternate Routing (AAR)"/>
         <xsd:enumeration value="Network Hold"/>
         <xsd:enumeration value="User Hold"/>
         <xsd:enumeration value="Monitor"/>
         <xsd:enumeration value="Record"/>
         <xsd:enumeration value="Auto Registration"/>
         <xsd:enumeration value="Use Generic Icon"/>
         <xsd:enumeration value="MWL Policy"/>
         <xsd:enumeration value="Line Text Label"/>

share/AXLSoap.xsd  view on Meta::CPAN

   <xsd:simpleType name="XZzuserInfo">
      <xsd:restriction base="xsd:string">
         <xsd:enumeration value="None"/>
         <xsd:enumeration value="Phone"/>
         <xsd:enumeration value="IP"/>
      </xsd:restriction>
   </xsd:simpleType>

<!-- AxlMessage.xsd -->

	<!-- These types are not used by anything, so they are commented out
	<xsd:element name="axl" type="axlapi:Envelope">
		<xsd:annotation>
			<xsd:documentation>The abstract AXL envelope.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="Envelope" abstract="true" block="restriction">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:all>
			<xsd:element name="asynchronous" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If defined, the client wishes the response returned asynchrously.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="asynchResponsePort" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If defined and asynchronous is true, then return the response to this port (otherwise, use the system default).</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="securityInfo" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Carries the security information of the envelope.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="userid" type="xsd:string"/>
						<xsd:element name="password" type="xsd:string"/>
						<xsd:element name="publicKey" type="xsd:string" minOccurs="0"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:all>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="Response" abstract="false">
		<xsd:complexContent>
			<xsd:extension base="axlapi:Envelope">
				<xsd:choice>
					<xsd:element name="response" type="axlapi:APIResponse">
						<xsd:annotation>
							<xsd:documentation>Completely abstracted, specific response payloads must be defined.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="error" type="axlapi:Error"/>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="Request" abstract="false">
		<xsd:complexContent>
			<xsd:extension base="axlapi:Envelope">
				<xsd:all>
					<xsd:element name="request" type="axlapi:APIRequest">
						<xsd:annotation>
							<xsd:documentation>Completely abstracted, the request payload must be defined.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:all>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	-->
	<xsd:complexType name="APIRequest" abstract="true">
		<xsd:annotation>
			<xsd:documentation>All requests must extend abstractRequest.</xsd:documentation>
		</xsd:annotation>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="APIResponse" abstract="true">
		<xsd:annotation>
			<xsd:documentation>All responses must extend abstractResponse.</xsd:documentation>
		</xsd:annotation>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:complexType name="Error">
		<xsd:sequence>
			<xsd:element name="code" type="xsd:long">
				<xsd:annotation>
					<xsd:documentation>The error code.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="message" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Optional text message sent with error code.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="request" type="xsd:string" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Optional reference to original request.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="url" type="xsd:anyURI" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Optional URL to link for more information.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
	</xsd:complexType>
<!-- axlsoap.xsd -->

	<xsd:complexType name="AddCommonPhoneConfigReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Common Phone Profile to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newCommonPhoneConfig" type="axlapi:XCommonPhoneConfig" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCommonPhoneConfig" type="axlapi:AddCommonPhoneConfigReq"/>
	<xsd:element name="addCommonPhoneConfigResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="CommonPhoneConfigReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String100"/>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCommonPhoneConfig" type="axlapi:CommonPhoneConfigReq"/>
	<xsd:complexType name="GetCommonPhoneConfigRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Common Phone Profile that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="CommonPhoneConfig" type="axlapi:XCommonPhoneConfig"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCommonPhoneConfigResponse" type="axlapi:GetCommonPhoneConfigRes"/>
	<xsd:complexType name="UpdateCommonPhoneConfigReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Common Phone Profile in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
						<xsd:element name="name" type="axlapi:String100"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String128" nillable="false" minOccurs="0"/>
					<xsd:element name="unlockPwd" type="axlapi:String50" nillable="false" minOccurs="0"/>
					<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0"/>
					<xsd:element name="dndAlertingType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
					<xsd:element name="backgroundImage" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="phonePersonalization" type="axlapi:XPhonePersonalization" nillable="false" minOccurs="0"/>
					<xsd:element name="phoneServiceDisplay" type="axlapi:XPhoneServiceDisplay" nillable="false" minOccurs="0"/>
					<xsd:element name="sshUserId" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="sshPwd" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCommonPhoneConfig" type="axlapi:UpdateCommonPhoneConfigReq"/>
	<xsd:element name="updateCommonPhoneConfigResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeCommonPhoneConfig" type="axlapi:CommonPhoneConfigReq"/>
	<xsd:element name="removeCommonPhoneConfigResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddSIPRoutePatternReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new SIP Route Pattern to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newSIPRoutePattern" type="axlapi:XNPSIPRoutePattern" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addSIPRoutePattern" type="axlapi:AddSIPRoutePatternReq"/>
	<xsd:element name="addSIPRoutePatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="SIPRoutePatternReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
						<xsd:sequence>
							<xsd:element name="pattern" type="xsd:string"/>
							<xsd:choice>
								<xsd:element name="routePartitionId" type="axlapi:XUUID"/>
								<xsd:element name="routePartitionName" type="axlapi:String50"/>
							</xsd:choice>
						</xsd:sequence>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPRoutePattern" type="axlapi:SIPRoutePatternReq"/>
	<xsd:complexType name="GetSIPRoutePatternRes">
		<xsd:annotation>
			<xsd:documentation>Contains the SIP Route Pattern that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XNPSIPRoutePattern"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPRoutePatternResponse" type="axlapi:GetSIPRoutePatternRes"/>
	<xsd:complexType name="UpdateSIPRoutePatternReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing sip route pattern in the database.  The route pattern can be specified by its GUID, or by a combination if its pattern, route partition GUID, and route filter GUID.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new pattern for this route pattern.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route partition of this route pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="blockEnable" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="destination" nillable="false" minOccurs="0">
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="sipTrunk" type="axlapi:XSIPTrunk"/>
								<xsd:element name="sipTrunkName" type="axlapi:String128"/>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="dnOrPatternIPv6" type="xsd:string" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateSIPRoutePattern" type="axlapi:UpdateSIPRoutePatternReq"/>
	<xsd:element name="updateSIPRoutePatternResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeSIPRoutePattern" type="axlapi:SIPRoutePatternReq"/>
	<xsd:element name="removeSIPRoutePatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDHCPServerReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new DHCP Server to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newDHCPServer" type="axlapi:XDHCPServer" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDHCPServer" type="axlapi:AddDHCPServerReq"/>
	<xsd:element name="addDHCPServerResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="DHCPServerReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDHCPServer" type="axlapi:DHCPServerReq"/>
	<xsd:complexType name="GetDHCPServerRes">
		<xsd:annotation>
			<xsd:documentation>Contains the DHCP Server that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="DHCPServer" type="axlapi:XDHCPServer"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDHCPServerResponse" type="axlapi:GetDHCPServerRes"/>
	<xsd:complexType name="UpdateDHCPServerReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing DHCP Server in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the DHCP Server  to be modified.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Each DHCPServer is associated with a unique Host Server.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="processNode" type="axlapi:XProcessNode">
							<xsd:annotation>
								<xsd:documentation>only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="processNodeName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="primaryDNSipAddress" type="xsd:string" minOccurs="0"/>
					<xsd:element name="secondaryDNSipAddress" type="xsd:string" minOccurs="0"/>
					<xsd:element name="primaryTFTPServeripAddress" type="xsd:string" minOccurs="0"/>
					<xsd:element name="secondaryTFTPServeripAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="bootstrapServeripAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="domainName" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="tftpServerName" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="arpCacheTimeout" type="xsd:nonNegativeInteger" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="ipAddressLeaseTime" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="renewalTime" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="rebindingTime" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The valid values ranges from 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDHCPServer" type="axlapi:UpdateDHCPServerReq"/>
	<xsd:element name="updateDHCPServerResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeDHCPServer" type="axlapi:DHCPServerReq"/>
	<xsd:element name="removeDHCPServerResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="addAARGroupReq">
		<xsd:annotation>
			<xsd:documentation>Adds one new AARGroup to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="AARGroup" type="axlapi:XAARGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addAARGroup" type="axlapi:addAARGroupReq"/>
	<xsd:element name="addAARGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getAARGroup" type="axlapi:NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>Get the specified AARGroup from the database.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="getAARGroupRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="AARGroup" type="axlapi:XAARGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getAARGroupResponse" type="axlapi:getAARGroupRes"/>
	<xsd:complexType name="updateAARGroupReq">
		<xsd:annotation>
			<xsd:documentation>Updates the specified entry in AARNeighborhood.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="name" type="axlapi:String32" nillable="false"/>
				<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
			</xsd:choice>
			<xsd:element name="newName" type="axlapi:String32" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="updateAARGroup" type="axlapi:updateAARGroupReq"/>
	<xsd:element name="updateAARGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="updateAARGroupMatrixReq">
		<xsd:annotation>
			<xsd:documentation>Updates a specific entry in the AARDialPrefixMatrix table.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
				<xsd:annotation>
					<xsd:documentation>The pkid of the entry in the AARDialPrefixMatrix table that is to be modified.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="prefixDigit" type="axlapi:String32" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>The new prefixDigit value for this particular AARGroup relationship.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="axlapi:XUUID" use="optional"/>
	</xsd:complexType>
	<xsd:element name="updateAARGroupMatrix" type="axlapi:updateAARGroupMatrixReq"/>
	<xsd:element name="updateAARGroupMatrixResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeAARGroup" type="axlapi:NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>Removes the specified AARGroup from the database.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="removeAARGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddPhoneReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds one new phone to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newPhone" type="axlapi:XIPPhone"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addPhone" type="axlapi:AddPhoneReq"/>
	<xsd:element name="addPhoneResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemovePhoneReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified phone from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="phoneId" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the phone to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the phone to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removePhone" type="axlapi:RemovePhoneReq"/>
	<xsd:element name="removePhoneResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdatePhoneReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing IP phone in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the phone that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the phone that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:Name" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name of the phone.  Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Calling Search Space for this phone. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The name of the new Calling Search Space for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Device Pool for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Device Pool for this phone. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="axlapi:UniqueString50" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config for this phone. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Only applicable to Phone.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="commonPhoneConfig" type="axlapi:XCommonPhoneConfig" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonPhoneConfigName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Location for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="locationName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Location for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mediaResourceListId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Media Resource List for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mediaResourceListName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Media Resource List for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID"/>
						<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="loadInformation" type="axlapi:XLoadInformation" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new load information for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new vendor config for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="traceFlag" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new trace flag for this phone.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="retryVideoCallAsAudio" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="associatedPC" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="lines" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new lines for this phone.  If this element is null, then all lines are removed from this phone.  Note:  If the lines element is present, then all existing lines are removed and replaced with the sub-elements described by...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
								<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded"/>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="phoneTemplateId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Phone Template for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="phoneTemplateName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The name of the new Phone Template for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="speeddials" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new speed-dials for this phone.  If this element is null, then all speed-dials are removed from this phone.  Note:  If the "speeddials" element is present, then all existing speed-dials are removed and replaced with the ...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="speeddial" type="axlapi:XSpeeddial" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="busyLampFields" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Busy Lamp Fields for this profile.  If this element is null, then all  Busy Lamp Fields are removed from this profile.  Note:  If the " Busy Lamp Fields" element is present, then all existing  Busy Lamp Fields are re...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="busyLampFields" type="axlapi:XBusyLampField" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="primaryPhoneId" type="axlapi:XDevice">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="primaryPhoneName" type="axlapi:String128" nillable="false"/>
					</xsd:choice>
					<xsd:element name="ringSettingIdleBLFAudibleAlert" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ringSettingBusyBLFAudibleAlert" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="blfDirectedCallParks" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Busy Lamp Fields DirectedCallPark for this profile.  If this element is null, then all  Busy Lamp Fields DirectedCallPark are removed from this profile.  Note:  If the "Busy Lamp Fields DirectedCallPark" element is p...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="blfDirectedCallPark" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:complexContent>
											<xsd:extension base="axlapi:XBLFDirectedCallPark">
												<xsd:attribute name="index" type="xsd:positiveInteger"/>
											</xsd:extension>
										</xsd:complexContent>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="addOnModules" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Add-on Modules associated with this phone.  If this element is null, then all Add-on Modules are removed from this phone.  Note:  If the "addOnModules" element is present, then all existing Add-on Modules are removed...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="addOnModule" type="axlapi:XAddOnModule" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="userLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
					<xsd:element name="networkLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Security Profile for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="securityProfileId" type="axlapi:XUUID"/>
						<xsd:element name="securityProfileName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="sipProfileId" type="axlapi:XUUID"/>
						<xsd:element name="sipProfileName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:element name="idleTimeout" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Idle Timeout value for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="authenticationURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Authentication URL for this phone. Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="directoryURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Directory URL for this phone. Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="idleURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Idle URL for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="informationURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Information URL for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="messagesURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Messages (voice-mail) URL for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="proxyServerURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Proxy Server URL for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="servicesURL" type="xsd:anyURI" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new IP Services URL for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="services" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="service" type="axlapi:XSubscribedService" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Softkey Template for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="softkeyTemplateId" type="axlapi:XUUID"/>
						<xsd:element name="softkeyTemplateName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:sequence minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Extension Mobility block.  By default, extension mobility is disabled.  To enable, include a default profile and set enableExtensionMobility to true.  Only applicable to 7960 and 7940 phones. If enableExtensionMobility i...
						</xsd:annotation>
						<xsd:choice>
							<xsd:annotation>
								<xsd:documentation>The absence of this tag would mean the device would use the current device Settings</xsd:documentation>
							</xsd:annotation>
							<xsd:element name="defaultProfileId" type="axlapi:XUUID" nillable="false" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>The ID of the default profile for this device. Nullable.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:element name="defaultProfileName" type="axlapi:String50" nillable="false" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>The name of the default profile for this device.  Nullable.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:choice>
						<xsd:element name="enableExtensionMobility" type="xsd:boolean">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
					<xsd:element name="singleButtonBarge" type="axlapi:XBarge" nillable="false" minOccurs="0"/>
					<xsd:element name="joinAcrossLines" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="builtInBridgeStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="callInfoPrivacyStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="hlogStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ownerUserId" type="axlapi:String255" nillable="true" minOccurs="0"/>
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="packetCaptureMode" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
					<xsd:element name="packetCaptureDuration" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="subscribeCallingSearchSpaceId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="rerouteCallingSearchSpaceId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="rerouteCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="allowCtiControlFlag" type="xsd:boolean" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="presenceGroupId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="presenceGroupName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="unattendedPort" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="requireDTMFReception" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="RFC2833Disabled" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="phoneLoadName" type="axlapi:String32" minOccurs="0"/>
					<xsd:element name="certificateOperation" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XCertificateOperation in AXLEnums.xsd-->
					<xsd:sequence minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>These tags can be updated only if securityProfile is not mentioned in the request.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="authenticationMode" type="axlapi:XAuthenticationMode" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>authenticationMode can be updated only if certificateOperation field is Install/Upgrade, Delete or Troubleshoot.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="keySize" type="axlapi:XKeySize" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>keySize can be updated only if certificateOperation field is Install/Upgrade, Delete or Troubleshoot.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
					<xsd:element name="authenticationString" type="axlapi:String128" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>authenticationString can be updated only if certificateOperation field is Install/Upgrade, Delete or Troubleshoot.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="certificateStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XCertificateStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Read-only tag.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="upgradeFinishTime" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="deviceMobilityMode" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="remoteDevice" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndRingSetting" type="xsd:string" nillable="true" minOccurs="0"><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndStatus" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isActive" type="xsd:boolean" default="true" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag determines if the newly added phone is active to determine consumption of license. If set to false the license units will not be consumed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for dual mode phones. Nullable</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="mobilityUserId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Mobility User for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mobilityUserIdName" type="axlapi:String50" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The userid of the new mobility user for this phone.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="phoneSuite" type="axlapi:XPhonePersonalization" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If a blank tag is passed, the existing value of this tag in the database is retained.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneServiceDisplay" type="axlapi:XPhoneServiceDisplay" minOccurs="0"/>
					<xsd:element name="isProtected" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support Secure Tone</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for CUMC devices.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="mobileSmartClientProfileId" type="axlapi:XUUID"/>
						<xsd:element name="mobileSmartClientProfileName" type="axlapi:String128"/>
					</xsd:choice>
					<xsd:element name="mtpRequired" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mtpPreferredCodec" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XSIPCodec in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialRules" type="axlapi:XSIPDialRules" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialRulesName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="sshUser" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable only to those devices that support ssh feature.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="sshPwd" type="axlapi:String255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable only to those devices that support ssh feature.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="digestUser" type="axlapi:String255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable only to SIP phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="outboundCallRollover" type="axlapi:XOutboundCallRollover" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field is applicable to only those phones that support Automatic Outbound Call Rollover.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updatePhone" type="axlapi:UpdatePhoneReq"/>
	<xsd:element name="updatePhoneResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetPhoneReq" final="#all">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified phone from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="phoneId" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the phone to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the phone to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getPhone" type="axlapi:GetPhoneReq"/>
	<xsd:complexType name="GetPhoneRes">
		<xsd:annotation>
			<xsd:documentation>Returns the phone specified by the GetPhone request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" type="axlapi:XIPPhone"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getPhoneResponse" type="axlapi:GetPhoneRes"/>
	<xsd:complexType name="AddCommonDeviceConfigReq" abstract="false" final="#all">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="commonDeviceConfig" type="axlapi:XCommonDeviceConfig"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddCallerFilterListReq">
		<xsd:annotation>
			<xsd:documentation>Adds one new CallerFilterList to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newCallerFilterList" type="axlapi:XCallerFilterList"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCallerFilterList" type="axlapi:AddCallerFilterListReq"/>
	<xsd:element name="addCallerFilterListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getCallerFilterList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetCallerFilterListRes">
		<xsd:annotation>
			<xsd:documentation>Returns the callerFilterList specified by the GetCallerFilterList request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callerFilterList" type="axlapi:XCallerFilterList"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallerFilterListResponse" type="axlapi:GetCallerFilterListRes"/>
	<xsd:complexType name="UpdateCallerFilterListReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing CallerFilterList in the database. Only name and description fields can be updated.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String50" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the caller filter list to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the caller filter list to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this caller filter list.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String128" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this caller filter list.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isAllowedType" type="xsd:boolean" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new end user for this callerFilterList.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="endUserId" type="axlapi:XUUID"/>
						<xsd:element name="endUserIdName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of this caller filter list.   Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XCallerFilterListMember" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCallerFilterList" type="axlapi:UpdateCallerFilterListReq"/>
	<xsd:element name="updateCallerFilterListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeCallerFilterList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeCallerFilterListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="addCommonDeviceConfig" type="axlapi:AddCommonDeviceConfigReq"/>
	<xsd:element name="addCommonDeviceConfigResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetCommonDeviceConfigRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="commonDeviceConfig" type="axlapi:XCommonDeviceConfig"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCommonDeviceConfig" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="getCommonDeviceConfigResponse" type="axlapi:GetCommonDeviceConfigRes"/>
	<xsd:element name="removeCommonDeviceConfig" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeCommonDeviceConfigResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCommonDeviceConfigReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:UniqueString50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="sofkeyTemplate"/>
						<xsd:element name="softkeyTemplateName"/>
					</xsd:choice>
					<xsd:element name="userLocale" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable. The value accepted and retrieved from the database for this field will be of type XUserLocale in AXLEnums.xsd.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
					<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0"/>
					<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Default is not applicable for CommonDeviceConfig API</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
					<xsd:element name="IPAddressingMode" type="axlapi:XIPAddressingMode" minOccurs="0"/>
					<xsd:element name="IPAddressingModePreferenceControl" type="axlapi:XIPAddressingModePrefControl" minOccurs="0"/>
					<xsd:element name="allowAutoConfigurationForPhones" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCommonDeviceConfig" type="axlapi:UpdateCommonDeviceConfigReq"/>
	<xsd:element name="updateCommonDeviceConfigResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDeviceMobilityReq" abstract="false" final="#all">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="deviceMobility" type="axlapi:XDeviceMobility"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDeviceMobility" type="axlapi:AddDeviceMobilityReq"/>
	<xsd:element name="addDeviceMobilityResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetDeviceMobilityRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="deviceMobility" type="axlapi:XDeviceMobility"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDeviceMobility" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="getDeviceMobilityResponse" type="axlapi:GetDeviceMobilityRes"/>
	<xsd:element name="removeDeviceMobility" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeDeviceMobilityResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateDeviceMobilityReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="xsd:string" minOccurs="0"/>
					<xsd:element name="subNet" type="xsd:string" minOccurs="0"/>
					<xsd:element name="subNetMaskSz" type="xsd:nonNegativeInteger" minOccurs="0"/>
					<xsd:element name="members" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="members" type="axlapi:XDevicePoolDeviceMobility" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDeviceMobility" type="axlapi:UpdateDeviceMobilityReq"/>
	<xsd:element name="updateDeviceMobilityResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDeviceMobilityGroupReq" abstract="false" final="#all">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="deviceMobilityGroup" type="axlapi:XDeviceMobilityGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDeviceMobilityGroup" type="axlapi:AddDeviceMobilityGroupReq"/>
	<xsd:element name="addDeviceMobilityGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetDeviceMobilityGroupRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="deviceMobilityGroup" type="axlapi:XDeviceMobilityGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDeviceMobilityGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="getDeviceMobilityGroupResponse" type="axlapi:GetDeviceMobilityGroupRes"/>
	<xsd:element name="removeDeviceMobilityGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeDeviceMobilityGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateDeviceMobilityGroupReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String50" nillable="true" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDeviceMobilityGroup" type="axlapi:UpdateDeviceMobilityGroupReq"/>
	<xsd:element name="updateDeviceMobilityGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddPhysicalLocationReq">
		<xsd:sequence>
			<xsd:element name="physicalLocation" type="axlapi:XPhysicalLocation"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="addPhysicalLocation" type="axlapi:AddPhysicalLocationReq"/>
	<xsd:element name="addPhysicalLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetPhysicalLocationRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="physicalLocation" type="axlapi:XPhysicalLocation"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getPhysicalLocation" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="getPhysicalLocationResponse" type="axlapi:GetPhysicalLocationRes"/>
	<xsd:element name="removePhysicalLocation" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removePhysicalLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdatePhysicalLocationReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updatePhysicalLocation" type="axlapi:UpdatePhysicalLocationReq"/>
	<xsd:element name="updatePhysicalLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="addApplicationToSoftkeyTemplate" type="axlapi:AddApplicationToSoftkeyTemplateReq"/>
	<xsd:complexType name="AddApplicationToSoftkeyTemplateReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newApplication" type="axlapi:XApplicationToSoftKeyTemplate"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addApplicationToSoftkeyTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="removeApplicationToSoftkeyTemplateReq">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="softKeyTemplateId" type="axlapi:XUUID" nillable="false"/>
				<xsd:element name="softKeyTemplateName" type="axlapi:String100" nillable="false">
					<xsd:annotation>
						<xsd:documentation>This template should not be a standard template.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:choice>
			<xsd:element name="applicationName" type="axlapi:String100" nillable="false">
				<xsd:annotation>
					<xsd:documentation>This application should not Cisco CallManager.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="removeApplicationToSoftkeyTemplate" type="axlapi:removeApplicationToSoftkeyTemplateReq"/>
	<xsd:element name="removeApplicationToSoftkeyTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddSoftKeyTemplateReq">
		<xsd:sequence>
			<xsd:element name="softKeyTemplate" type="axlapi:XSoftkeyTemplate"/>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="addSoftKeyTemplate" type="axlapi:AddSoftKeyTemplateReq"/>
	<xsd:element name="addSoftKeyTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getSoftKeyTemplate" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetSoftKeyTemplateRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="softKeyTemplate" type="axlapi:XSoftkeyTemplate"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSoftKeyTemplateResponse" type="axlapi:GetSoftKeyTemplateRes"/>
	<xsd:complexType name="UpdateSoftKeyTemplateReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String100" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is read-only for standard template.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String100" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is read-only for standard template.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isDefault" type="xsd:boolean" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If this is set to true for a template which is not default,the old default SoftKeyTemplate will be deSelected.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneServiceDisplay" type="axlapi:XPhoneServiceDisplay" minOccurs="0"/>
					<xsd:element name="requirePKIAuthForHTTPS" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateSoftKeyTemplate" type="axlapi:UpdateSoftKeyTemplateReq"/>
	<xsd:element name="updateSoftKeyTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeSoftKeyTemplate" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeSoftKeyTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateSoftKeySetReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="softKeyTemplateId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="softKeyTemplateName" type="axlapi:String100" nillable="false"/>
					</xsd:choice>
					<xsd:element name="callStates" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="callState" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence minOccurs="0">
											<xsd:element name="callStateName" type="axlapi:XCallState" nillable="false"/>
											<xsd:element name="softKeys" minOccurs="0">
												<xsd:annotation>
													<xsd:documentation>List of mandatory keys for each callstate ::               On Hook - NewCall
Connected - End Call 
On Hold - Resume
Off Hook - End Call 
Connected Transfer - Transfer
Digits After First - Backward
Connected Conference  -  Conference
Ring Out - End Call
Off Hook With Feature - End Call            </xsd:documentation>
												</xsd:annotation>
												<xsd:complexType>
													<xsd:sequence minOccurs="0">
														<xsd:element name="softKey" minOccurs="0" maxOccurs="unbounded">
															<xsd:complexType>
																<xsd:sequence>
																	<xsd:element name="positionId" type="xsd:nonNegativeInteger" nillable="false">
																		<xsd:annotation>
																			<xsd:documentation>Read-Only.The positionId has values starting with 0 and get incremented by 1 for each call state.</xsd:documentation>
																		</xsd:annotation>
																	</xsd:element>
																	<xsd:element name="softKeyName" type="axlapi:XSoftkey" nillable="false"/>
																</xsd:sequence>
															</xsd:complexType>
														</xsd:element>
													</xsd:sequence>
												</xsd:complexType>
											</xsd:element>
										</xsd:sequence>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateSoftKeySet" type="axlapi:UpdateSoftKeySetReq"/>
	<xsd:element name="updateSoftKeySetResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetSoftKeySetRes">
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="softKeySet">
							<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XSoftKeySet"/>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="getSoftKeySet" type="axlapi:NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>Mention the name or uuid of softkey template.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="getSoftKeySetResponse" type="axlapi:GetSoftKeySetRes"/>
	<xsd:complexType name="AddTranscoderReq">
		<xsd:annotation>
			<xsd:documentation>Adds  new Transcoder to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="transcoder" type="axlapi:XTranscoder"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addTranscoder" type="axlapi:AddTranscoderReq"/>
	<xsd:element name="addTranscoderResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateTranscoderReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:UniqueString255" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:UniqueString255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Should not be modified for Cisco Media Termination Point (WS-SVC-CMM).</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String128" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Device Pool for this transcoder.  </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="axlapi:UniqueString50" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the new Device Pool for this transcoder.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this transcoder.  </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="axlapi:UniqueString50" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config  for this transcoder.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="loadInformation" type="axlapi:XLoadInformation" nillable="true" minOccurs="0"/>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Used only for Cisco Media Termination Point (WS-SVC-CMM).</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isTrustedRelayPoint" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="maximumCapacity" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for  Cisco Media Termination Point (WS-SVC-CMM). Valid values for this tag are 32,64,96,128. </xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<!--<xsd:element name="subUnit" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is used only by     Cisco Media Termination Point (WS-SVC-CMM)</xsd:documentation>
						</xsd:annotation>
					</xsd:element>-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateTranscoder" type="axlapi:UpdateTranscoderReq"/>
	<xsd:element name="updateTranscoderResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getTranscoder" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetTranscoderRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" type="axlapi:XTranscoder"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTranscoderResponse" type="axlapi:GetTranscoderRes"/>
	<xsd:element name="removeTranscoder" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeTranscoderResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMeetMeReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new meet me num plan to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="meetMe" type="axlapi:XNPMeetMe"/>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="addMeetMe" type="axlapi:AddMeetMeReq"/>
	<xsd:element name="addMeetMeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMeetMeReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing Meet me number in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" nillable="false" minOccurs="0"/>
					<xsd:element name="description" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route partition of this meet me number.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="minimumSecurityLevel" type="axlapi:XDeviceSecurityMode" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateMeetMe" type="axlapi:UpdateMeetMeReq"/>
	<xsd:element name="updateMeetMeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetMeetMeReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Meet-me Number/Pattern from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMeetMe" type="axlapi:GetMeetMeReq"/>
	<xsd:complexType name="GetMeetMeRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Meet me num plan specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="meetMe" type="axlapi:XNPMeetMe"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="getMeetMeResponse" type="axlapi:GetMeetMeRes"/>
	<xsd:complexType name="RemoveMeetMeReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Meet-me Number/Pattern from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeMeetMe" type="axlapi:RemoveMeetMeReq"/>
	<xsd:element name="removeMeetMeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMOHServerReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="mohServer" type="axlapi:XMOHServer"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMOHServer" type="axlapi:AddMOHServerReq"/>
	<xsd:element name="addMOHServerResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMOHServerReq">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="name" type="axlapi:String100" nillable="false"/>
				<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
			</xsd:choice>
			<xsd:element name="newName" type="axlapi:UniqueName128" nillable="false" minOccurs="0"/>
			<xsd:element name="description" type="axlapi:String100" nillable="true" minOccurs="0"/>
			<xsd:sequence minOccurs="0">
				<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false">
					<xsd:annotation>
						<xsd:documentation>The GUID of the new Device Pool for this MOHServer. </xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="devicePoolName" type="axlapi:String100" nillable="false">
					<xsd:annotation>
						<xsd:documentation>The name of the new Device Pool for this MOHServer. </xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:sequence minOccurs="0">
				<xsd:element name="locationId" type="axlapi:XUUID" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The GUID of the new location for this MOHServer.  Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="locationName" type="axlapi:String100" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The name of the new location for this MOHServer. Nullable.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
			</xsd:sequence>
			<xsd:element name="maxUnicastConnections" type="xsd:unsignedLong" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Maximum Half Duplex Streams must be a number in the range 0 to 500.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="maxMulticastConnections" type="xsd:unsignedLong" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Maximum Multicast Connections must be a number in the range 0 to 999999.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="fixedAudioSourceDevice" type="xsd:unsignedLong" nillable="true" minOccurs="0"/>
			<xsd:element name="runFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>If isMultiCastEnabled is false then these elements are not necessary.MOHServer will be added to the database without the values of  these tags.If the tag isMultiCastEnabled is not specified, then we are allowed to update audio...
				</xsd:annotation>
				<xsd:element name="isMultiCastEnabled" type="xsd:boolean" nillable="false" minOccurs="0"/>
				<xsd:element name="baseMulticastIPaddress" type="xsd:string" nillable="false" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>All Multicast IP Addresses must be in the range 239.1.1.1  to 239.255.255.255</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="baseMulticastPort" type="xsd:unsignedLong" nillable="false" minOccurs="0">
					<xsd:annotation>
						<xsd:documentation>Multicast Base Port number must be an even number in the range 16384 to 32766</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="multicastIncrementOnIP" type="xsd:boolean" nillable="false" minOccurs="0"/>
				<xsd:element name="audioSources" minOccurs="0">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="audioSource" minOccurs="0" maxOccurs="unbounded">
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="sourceId" type="xsd:unsignedLong" nillable="false"/>
										<xsd:element name="maxHops" type="xsd:unsignedLong" default="2" nillable="false" minOccurs="0"/>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:sequence>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="updateMOHServer" type="axlapi:UpdateMOHServerReq"/>
	<xsd:element name="updateMOHServerResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getMOHServer" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetMOHServerRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mohServer" type="axlapi:XMOHServer"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMOHServerResponse" type="axlapi:GetMOHServerRes"/>
	<xsd:element name="removeMOHServer" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeMOHServerResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddConferenceBridgeReq">
		<xsd:annotation>
			<xsd:documentation>Adds  new Conference Bridge to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newCFB" type="axlapi:XConferenceBridge"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addConferenceBridge" type="axlapi:AddConferenceBridgeReq"/>
	<xsd:element name="addConferenceBridgeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveConferenceBridgeReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Conference Bridge from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the Conference Bridge to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="name" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the  Conference Bridge to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeConferenceBridge" type="axlapi:RemoveConferenceBridgeReq"/>
	<xsd:element name="removeConferenceBridgeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateConferenceBridgeReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:Name" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Should not be modified for Cisco Conference Bridge(WS-SVC-CMM)    and Cisco Media Server(WS-SVC-CMM-MS).</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="devicePoolName" type="xsd:string" nillable="false"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="locationName" type="xsd:Name" nillable="false"/>
					</xsd:choice>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Used only for               Cisco Video Conference Bridge(IPVC-35xx),          Cisco Conference Bridge (WS-SVC-CMM)             and Cisco Media Server(WS-SVC-CMM-MS).</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="loadInformation" type="axlapi:XLoadInformation" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is used only for Cisco Conference Bridge Hardware.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="maximumCapacity" type="xsd:nonNegativeInteger" default="32" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is  used only for Cisco Conference Bridge(WS-SVC-CMM)    and Cisco Media Server(WS-SVC-CMM-MS).  Valid values for this tag are 32,64,96,128.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Valid only for Cisco IOS Enhanced Conference Bridge</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="securityProfileId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="securityProfileName" type="axlapi:UniqueString50" nillable="false"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateConferenceBridge" type="axlapi:UpdateConferenceBridgeReq"/>
	<xsd:element name="updateConferenceBridgeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetConferenceBridgeReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified conference bridge from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the Conference Bridge to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="name" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the Conference Bridge to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getConferenceBridge" type="axlapi:GetConferenceBridgeReq"/>
	<xsd:complexType name="GetConferenceBridgeRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" type="axlapi:XConferenceBridge"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getConferenceBridgeResponse" type="axlapi:GetConferenceBridgeRes"/>
	<xsd:complexType name="AddAttendantConsoleUserReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Pilot User  to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="pilotUser" type="axlapi:XPilotUser"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addAttendantConsoleUser" type="axlapi:AddAttendantConsoleUserReq"/>
	<xsd:element name="addAttendantConsoleUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveAttendantConsoleUserReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified pilot user from the database. </xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID">
						<xsd:annotation>
							<xsd:documentation>The GUID of the PilotUser to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userId" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The user Id of the PilotUser be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeAttendantConsoleUser" type="axlapi:RemoveAttendantConsoleUserReq"/>
	<xsd:element name="removeAttendantConsoleUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateAttendantConsoleUserReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Pilot User in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="userId" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The userId of the pilot user to modify.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The pkid of the pilot user to modify.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newUserId" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new UserId of the pilotUser.Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="password" type="xsd:string" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateAttendantConsoleUser" type="axlapi:UpdateAttendantConsoleUserReq"/>
	<xsd:element name="updateAttendantConsoleUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetAttendantConsoleUserReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Pilot User from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the pilot user to be retrieved.Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userId" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the pilot user to be retrieved.Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getAttendantConsoleUser" type="axlapi:GetAttendantConsoleUserReq"/>
	<xsd:complexType name="GetAttendantConsoleUserRes">
		<xsd:annotation>
			<xsd:documentation>Returns the pilot user specified by the GetPilotUser request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pilotUser" type="axlapi:XPilotUser"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getAttendantConsoleUserResponse" type="axlapi:GetAttendantConsoleUserRes"/>
	<xsd:complexType name="AddAttendantConsoleHuntGroupReq">
		<xsd:annotation>
			<xsd:documentation>Adds one new hunt group to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newHuntGroup" type="axlapi:XPilotHuntGroup" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The new hunt group to be added.Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addAttendantConsoleHuntGroup" type="axlapi:AddAttendantConsoleHuntGroupReq"/>
	<xsd:element name="addAttendantConsoleHuntGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateAttendantConsoleHuntGroupReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing hunt group in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="pilotPointId" type="axlapi:XUUID"/>
						<xsd:element name="pilotPointName"/>
					</xsd:choice>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of this Hunt Group.If this element is null, then all members are removed from this hunt group.Note:If the "members" element is present, then all existing members are removed and replaced with the "member" sub...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XPilotHuntGroupMember" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>A list of the new members of this hunt group.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateAttendantConsoleHuntGroup" type="axlapi:UpdateAttendantConsoleHuntGroupReq"/>
	<xsd:element name="updateAttendantConsoleHuntGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveAttendantConsoleHuntGroupReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified hunt group from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:choice>
			<xsd:element name="pilotPointId">
				<xsd:annotation>
					<xsd:documentation>The GUID of the pilotPoint associated with the hunt group to be retrieved.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="pilotPointName">
				<xsd:annotation>
					<xsd:documentation>The name of the pilotPoint associated with the hunt group to be retrieved.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
		</xsd:choice>
	</xsd:complexType>
	<xsd:element name="removeAttendantConsoleHuntGroup" type="axlapi:RemoveAttendantConsoleHuntGroupReq"/>
	<xsd:element name="removeAttendantConsoleHuntGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getAttendantConsoleHuntGroup" type="axlapi:GetAttendantConsoleHuntGroupReq"/>
	<xsd:complexType name="GetAttendantConsoleHuntGroupRes">
		<xsd:annotation>
			<xsd:documentation>Contains the hunt group that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="attendantConsoleHuntGroup" type="axlapi:XPilotHuntGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getAttendantConsoleHuntGroupResponse" type="axlapi:GetAttendantConsoleHuntGroupRes"/>
	<xsd:complexType name="GetAttendantConsoleHuntGroupReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified hunt group from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="pilotPointId" type="axlapi:XUUID">
						<xsd:annotation>
							<xsd:documentation>The GUID of the pilotPoint associated with the hunt group to be Removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="pilotPointName" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The name of the pilotPoint associated with the hunt group to be Removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="DeviceLoginReq" abstract="false">
		<xsd:annotation>
			<xsd:documentation>Logs-in the specified user to the specified phone.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="deviceId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the phone that is being logged-into.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="deviceName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of hte phone that is being logged-into.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="loginDuration" type="xsd:nonNegativeInteger" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The duration of the login.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice>
						<xsd:element name="profileId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the Device Profile to be used.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="profileName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the Device Profile to be used.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="userId" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The LDAP RN of the user that is to be logged-into the phone.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doDeviceLogin" type="axlapi:DeviceLoginReq"/>
	<xsd:complexType name="DeviceLoginResponse">
		<xsd:annotation>
			<xsd:documentation>Returns "true" if the login was performed successfully.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:StandardResponse"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doDeviceLoginResponse" type="axlapi:DeviceLoginResponse"/>
	<xsd:complexType name="DeviceLogoutReq" abstract="false">
		<xsd:annotation>
			<xsd:documentation>This method logs-out whichever user is logged-into the device.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="deviceId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the device to perform the log-out on.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="deviceName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the device to perform the log-out on.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doDeviceLogout" type="axlapi:DeviceLogoutReq"/>
	<xsd:complexType name="DeviceLogoutRes">
		<xsd:annotation>
			<xsd:documentation>Returns "true" if the log-out was performed successfully.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:StandardResponse"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doDeviceLogoutResponse" type="axlapi:DeviceLogoutRes"/>
	<xsd:complexType name="DeviceResetReq">
		<xsd:annotation>
			<xsd:documentation>Performs either a hard or soft reset on the specified device.  If resetting an MGCP box, then set isMGCP attribute to true.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="deviceId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the device to perform a reset on.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="deviceName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the device to performs a reset on.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice>
						<xsd:element name="isHardReset" type="xsd:boolean" nillable="false">
							<xsd:annotation>
								<xsd:documentation>True performs a hard reset.  False performs a soft reset.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="deviceResetType" type="axlapi:XReset" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Not nullable</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
				<xsd:attribute name="isMGCP" type="xsd:boolean" use="optional" default="false"/>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doDeviceReset" type="axlapi:DeviceResetReq">
		<xsd:annotation>
			<xsd:documentation>Performs either a hard or soft reset on the specified device.  If resetting an MGCP box, then set isMGCP attribute to true.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="DeviceResetRes">
		<xsd:annotation>
			<xsd:documentation>Returns "true" if the reset was performed successfully.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:StandardResponse"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doDeviceResetResponse" type="axlapi:DeviceResetRes"/>
	<xsd:complexType name="AuthenticateUserReq" abstract="false">
		<xsd:annotation>
			<xsd:documentation>Authenticates the user on the basis of pin or password.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string"/>
					<xsd:choice>
						<xsd:element name="password" type="xsd:string"/>
						<xsd:element name="pin">
							<xsd:annotation>
								<xsd:documentation>Applicable for end users only.</xsd:documentation>
							</xsd:annotation>
							<xsd:simpleType>
								<xsd:restriction base="xsd:string">
									<xsd:pattern value="\d\d\d\d+"/>
								</xsd:restriction>
							</xsd:simpleType>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doAuthenticateUser" type="axlapi:AuthenticateUserReq"/>
	<xsd:complexType name="AuthenticateUserResponse">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="userAuthenticated" type="xsd:boolean">
									<xsd:annotation>
										<xsd:documentation>true indicates that user was authenticated and false indicates that user was not authenticated.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="code" type="xsd:integer">
									<xsd:annotation>
										<xsd:documentation>This is the IMS result code that will be returned.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="doAuthenticateUserResponse" type="axlapi:AuthenticateUserResponse"/>
	<xsd:complexType name="AddLineReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Directory Number to the database.  Note that this does NOT associate a directory number with a phone.  Please use addPhone or updatePhone to do this.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newLine" type="axlapi:XNPDirectoryNumber" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The new line to be added.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addLine" type="axlapi:AddLineReq"/>
	<xsd:element name="addLineResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveLineReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified line from the database.  The line can be specified by its GUID, or by a combination of its pattern, Route Partition Id, and Route Filter Id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeLine" type="axlapi:RemoveLineReq"/>
	<xsd:element name="removeLineResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateLineReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing line (directory number) in the database.  Can specify the line with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new directory number.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The new Route Partition GUID.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The new Route Partition name.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="aarDestinationMask" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="aarKeepCallHistory" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="aarVoiceMailEnabled" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="callForwardAll" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding on this line.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardBusy" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when this line is busy for external calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardBusyInt" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when this line is busy for internal calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardNoAnswer" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when there is no answer on this line for external calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardNoAnswerInt" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when there is no answer on this line for internal calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardNoCoverage" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when there is no coverage on this line for external calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardNoCoverageInt" type="axlapi:XCallForwardInfo" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when there is no coverage on this line for internal calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardOnFailure" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardAlternateParty" type="axlapi:XCallForwardInfo" minOccurs="0"/>
					<xsd:element name="callForwardNotRegistered" type="axlapi:XCallForwardInfo" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when the DN is not registered for external calls.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callForwardNotRegisteredInt" type="axlapi:XCallForwardInfo" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The Calling Search Space and destination for Call Forwarding when the DN is not registered for internal calls</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callPickupGroup" type="axlapi:XNPCallPickupGroup">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callPickupGroupName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="autoAnswer" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XAutoAnswer in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The only valid values are Auto Answer with Headset and Auto Answer with Speakerphone.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>A value of 0 means 'none selected'.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>A value of 0 means 'none selected'.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="alertingName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="asciiAlertingName" type="axlapi:String32" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="presenceGroupId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID for the new Presence Group used for this directory number.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="presenceGroupName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="shareLineAppearanceCSSId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID for the new Calling Search Space used for the Shared Line Appearance for this line.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="shareLineAppearanceCSSName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="voiceMailProfileId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Voice Messaging Profile for this directory number.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="voiceMailProfileName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="patternPrecedence" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPatternPrecedence in AXLEnums.xsd-->
					<xsd:element name="releaseCause" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XReleaseCauseValue in AXLEnums.xsd-->
					<xsd:element name="hrDuration" type="xsd:long" nillable="false" minOccurs="0"/>
					<xsd:element name="hrInterval" type="xsd:long" nillable="false" minOccurs="0"/>
					<xsd:element name="cfaCSSPolicy" type="axlapi:XCFACSSActivationPolicy" default="Use System Default" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable for only intercom lines and if not set, intercom lines will not be active.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="defaultActivatedDeviceId" type="axlapi:XUUID"/>
						<xsd:element name="defaultActivatedDeviceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="ParkMonForwardNoRetrieveDN" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="ParkMonForwardNoRetrieveIntDN" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="ParkMonForwardNoRetrieveIntVMEnabled" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="ParkMonForwardNoRetrieveVMEnabled" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="ParkMonForwardNoRetrieveCSS" type="axlapi:XCallingSearchSpace" nillable="true" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only UUID Attribute is read by AXL</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="ParkMonForwardNoRetrieveCSSName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="ParkMonForwardNoRetrieveIntCSS" type="axlapi:XCallingSearchSpace" nillable="true" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only UUID Attribute is read by AXL</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="ParkMonForwardNoRetrieveIntCSSName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="ParkMonReversionTimer" type="xsd:long" nillable="true" minOccurs="0"/>
					<xsd:element name="partyEntranceTone" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="missedCallLogging" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateLine" type="axlapi:UpdateLineReq"/>
	<xsd:element name="updateLineResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetLineReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified line (directory number) from the database.  Can specify the line with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getLine" type="axlapi:GetLineReq"/>
	<xsd:complexType name="GetLineRes">
		<xsd:annotation>
			<xsd:documentation>Contains the directory number that was specified by the GetLine request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="directoryNumber" type="axlapi:XNPDirectoryNumber"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getLineResponse" type="axlapi:GetLineRes"/>
	<xsd:complexType name="AddUserReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new user to the user directory.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newUser" type="axlapi:XUser">
						<xsd:annotation>
							<xsd:documentation>The new user to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addUser" type="axlapi:AddUserReq"/>
	<xsd:element name="addUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveUserReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified user from the user directory.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The ID of the user to be removed. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeUser" type="axlapi:RemoveUserReq"/>
	<xsd:element name="removeUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateUserReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing user in the directory.  Specify the user to be modified with their LDAP RN.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The userid of the user to be modified.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="firstname" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new first name (given name) of the user.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="middlename" type="xsd:string" minOccurs="0"/>
					<xsd:element name="lastname" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new last name (surname) of the user.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="password" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new password for the user.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="pin" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new PIN (personal identification number) for the user.  Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:simpleType>
							<xsd:restriction base="xsd:string">
								<xsd:pattern value="^\d+$"/>
							</xsd:restriction>
						</xsd:simpleType>
					</xsd:element>
					<xsd:element name="telephoneNumber" type="axlapi:XDirectoryNumber" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new telephone number for the user.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mailid" type="xsd:string" minOccurs="0"/>
					<xsd:element name="extension" type="axlapi:XDirectoryNumber" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="department" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new department for the user.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="manager" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new manager for the user.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userLocale" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The new locale for the user.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="associatedDevices" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The devices associated with this user.  Also known as controlled devices.  If "associateDevices" is present, then all current associated devices are replaced by the devices listed underneath the "associatedDevices" element. ...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" type="axlapi:String50" minOccurs="0" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>Name of device. If this element is null, then all devices are removed from the user.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="primaryExtension" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Only DNs associated with the associatedDevices of the  User can be used as primary extension.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XDirectoryNumber" nillable="false">
									<xsd:annotation>
										<xsd:documentation>DN or Pattern</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="routePartitionName" type="axlapi:String50" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Route Partition to which the DN is associated.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ipccExtension" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XDirectoryNumber" nillable="false">
									<xsd:annotation>
										<xsd:documentation>DN or Pattern</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="routePartitionName" type="axlapi:String50" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Route Partition to which the DN is associated.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="associatedPC" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new PC associated with this user.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="authenticationProxyRights" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="enableCTI" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="digestCredentials" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="enableCTISuperProvider" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="allowCallParkRetrieval" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callingNumberModAllowed" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneProfiles" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If this element is null, then all phone profiles are removed from the user.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:choice>
									<xsd:annotation>
										<xsd:documentation>If this element is null, then all the phone profiles are removed from the user.</xsd:documentation>
									</xsd:annotation>
									<xsd:element name="profile" type="axlapi:XPhoneProfile" nillable="false" maxOccurs="unbounded">
										<xsd:annotation>
											<xsd:documentation>The complete profile object.  Only the "uuid" attribute is used by the AXL API.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="profileName" type="xsd:string" nillable="false" maxOccurs="unbounded">
										<xsd:annotation>
											<xsd:documentation>The profile name.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
								</xsd:choice>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="enableMobility" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="enableMobileVoiceAccess" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="maxDeskPickupWaitTime" type="xsd:unsignedLong" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Maximum wait time for Desk Pickup must be a number in the range 0 to 30000. Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="remoteDestinationLimit" type="xsd:unsignedShort" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Remote Destination Limit must be a number in the range 1 to 10. Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="passwordCredentials" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:choice minOccurs="0">
									<xsd:element name="pwdCredPolicy" type="axlapi:XUUID">
										<xsd:annotation>
											<xsd:documentation>Only uuid can be accepted.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="pwdCredPolicyName" type="axlapi:String50"/>
								</xsd:choice>
								<xsd:element name="pwdCredUserCantChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pwdCredUserMustChange can be true or pwdCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pwdCredUserMustChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pwdCredUserMustChange can be true or pwdCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pwdCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pwdCredResetHackCount" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pwdCredSetLockOut" type="xsd:boolean" minOccurs="0"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="pinCredentials" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:choice minOccurs="0">
									<xsd:element name="pinCredPolicy" type="axlapi:XUUID">
										<xsd:annotation>
											<xsd:documentation>Ony uuid attribute can be accepted.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="pinCredPolicyName" type="axlapi:String50"/>
								</xsd:choice>
								<xsd:element name="pinCredUserCantChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pinCredUserMustChange can be true or pinCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pinCredUserMustChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pinCredUserMustChange can be true or pinCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pinCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pinCredResetHackCount" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pinCredSetLockOut" type="xsd:boolean" minOccurs="0"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="primaryDevice" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation> Primary devices for mobility users</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="defaultProfile" type="xsd:string" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateUser" type="axlapi:UpdateUserReq"/>
	<xsd:element name="updateUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetUserReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified user from the directory.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The ID of the user to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getUser" type="axlapi:GetUserReq"/>
	<xsd:complexType name="GetUserRes">
		<xsd:annotation>
			<xsd:documentation>Contains the user that was specified by the GetUser request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="user" type="axlapi:XUser"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getUserResponse" type="axlapi:GetUserRes"/>
	<!-- Application User API starts -->
	<xsd:complexType name="AddAppUserReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new application user.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newApplicationUser" type="axlapi:XApplicationUser">
						<xsd:annotation>
							<xsd:documentation>The new application user to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addAppUser" type="axlapi:AddAppUserReq"/>
	<xsd:element name="addAppUserResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateAppUserReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing application user in the directory.  Specify the user to be modified with their LDAP RN.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The userid of the user to be modified.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="password" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new password for the user. Valid range is 1-127 characters. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="passwordCredentials" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:choice minOccurs="0">
									<xsd:element name="pwdCredPolicy">
										<xsd:annotation>
											<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
										</xsd:annotation>
										<xsd:complexType>
											<xsd:complexContent>
												<xsd:extension base="axlapi:XCredentialPolicy">
													<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
												</xsd:extension>
											</xsd:complexContent>
										</xsd:complexType>
									</xsd:element>
									<xsd:element name="pwdCredPolicyName" type="axlapi:String50"/>
								</xsd:choice>
								<xsd:element name="pwdCredUserCantChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pwdCredUserMustChange can be true or pwdCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pwdCredUserMustChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pwdCredUserMustChange can be true or pwdCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pwdCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pwdCredResetHackCount" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pwdCredSetLockOut" type="xsd:boolean" minOccurs="0"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="digestCredentials" type="xsd:string" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Valid range is 1-42 characters.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="presenceGroup" type="axlapi:XPresenceGroup" nillable="false" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="presenceGroupName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="acceptPresenceSubscription" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="acceptOutOfDialogRefer" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="acceptUnsolicitedNotification" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="allowReplaceHeader" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="associatedDevices" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The devices associated with this user.  Also known as controlled devices.  If "associateDevices" is present, then all current associated devices are replaced by the devices listed underneath the "associatedDevices" element. ...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="device" type="axlapi:String50" minOccurs="0" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>Name of device. If this element is null, then all devices are removed from the user.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="associatedGroups" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The existing association with User Groups will be removed and new set of associations with user groups will be created.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="userGroup" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence minOccurs="0">
											<xsd:element name="name" type="axlapi:String100" nillable="false" minOccurs="0">
												<xsd:annotation>
													<xsd:documentation>Name of User Group</xsd:documentation>
												</xsd:annotation>
											</xsd:element>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateAppUser" type="axlapi:UpdateAppUserReq"/>
	<xsd:element name="updateAppUserResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getAppUser" type="axlapi:GetUserReq"/>
	<xsd:complexType name="GetAppUserRes">
		<xsd:annotation>
			<xsd:documentation>Contains the user that was specified by the GetUser request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="applicationUser" type="axlapi:XApplicationUser"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getAppUserResponse" type="axlapi:GetAppUserRes"/>
	<xsd:element name="removeAppUser" type="axlapi:RemoveUserReq"/>
	<xsd:element name="removeAppUserResponse" type="axlapi:StandardResponse"/>
	<!-- Application User API ends -->
	<xsd:complexType name="StandardResponse">
		<xsd:annotation>
			<xsd:documentation>Returns either the GUID of the object that was altered, or returns true if the operation was successful.  Whichever is appropriate for the corresponding request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:simpleType>

share/AXLSoap.xsd  view on Meta::CPAN

			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddDeviceProfileReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new device profile to the databse.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newProfile" type="axlapi:XPhoneProfile">
						<xsd:annotation>
							<xsd:documentation>The new profile to be added. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDeviceProfile" type="axlapi:AddDeviceProfileReq"/>
	<xsd:element name="addDeviceProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveDeviceProfileReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified device profile from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="profileId" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the profile to be removed. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="profileName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the profile to be removed. Not nullable</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeDeviceProfile" type="axlapi:RemoveDeviceProfileReq"/>
	<xsd:element name="removeDeviceProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateDeviceProfileReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing device profile in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the profile that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the profile that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:Name" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name of the profile.  Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the profile.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
					<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is not valid for a device profile.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="subscribeCallingSearchSpaceId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="allowCtiControlFlag" type="xsd:boolean" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="presenceGroupID" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="PresenceGroupName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="lines" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new lines for this profile.  If this element is null, then all lines are removed from this profile.  Note:  If the lines element is present, then all existing lines are removed and replaced with the sub-elements describe...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
								<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded"/>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="phoneTemplateId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Phone Template for this profile.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="phoneTemplateName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="speeddials" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new speed-dials for this profile.  If this element is null, then all speed-dials are removed from this profile.  Note:  If the "speeddials" element is present, then all existing speed-dials are removed and replaced with ...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="speeddial" type="axlapi:XSpeeddial" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="busyLampFields" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Busy Lamp Fields for this profile.  If this element is null, then all  Busy Lamp Fields are removed from this profile.  Note:  If the " Busy Lamp Fields" element is present, then all existing  Busy Lamp Fields are re...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="busyLampField" type="axlapi:XBusyLampField" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ringSettingIdleBLFAudibleAlert" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ringSettingBusyBLFAudibleAlert" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="addOnModules" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Add-on Modules associated with this profile.  If this element is null, then all Add-on Modules are removed from this profile.  Note:  If the "addOnModules" element is present, then all existing Add-on Modules are rem...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="addOnModule" type="axlapi:XAddOnModule" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="userLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
					<xsd:element name="services" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new subscribed services for this profile.  If this element is null, then all services are removed from this profile.  Note:  If the "services" element is present, then all existing services are removed and replaced with ...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="service" type="axlapi:XSubscribedService" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="softkeyTemplateId" type="axlapi:XUUID"/>
						<xsd:element name="softkeyTemplateName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="loginUserId" type="axlapi:String255" nillable="false" minOccurs="0"/>
					<xsd:element name="singleButtonBarge" type="axlapi:XBarge" nillable="false" minOccurs="0"/>
					<xsd:element name="joinAcrossLines" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="callInfoPrivacyStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndRingSetting" type="xsd:string" nillable="true" minOccurs="0"><!--This field is of the type axl:XRingSetting in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndStatus" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="alwaysUsePrimeLine" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="alwaysUsePrimeLineforVoiceMessage" type="xsd:string" default="Default" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDeviceProfile" type="axlapi:UpdateDeviceProfileReq"/>
	<xsd:element name="updateDeviceProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetDeviceProfileReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Device Profile from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="profileId" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the profile to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="profileName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the profile to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDeviceProfile" type="axlapi:GetDeviceProfileReq"/>
	<xsd:complexType name="GetDeviceProfileRes">
		<xsd:annotation>
			<xsd:documentation>Contains the device profile that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="profile" type="axlapi:XPhoneProfile"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDeviceProfileResponse" type="axlapi:GetDeviceProfileRes"/>
	<xsd:complexType name="AddTimePeriodReq" abstract="false" final="#all">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="timePeriod" type="axlapi:XTimePeriod"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addTimePeriod" type="axlapi:AddTimePeriodReq"/>
	<xsd:element name="addTimePeriodResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getTimePeriod" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetTimePeriodRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="timePeriod" type="axlapi:XTimePeriod"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTimePeriodResponse" type="axlapi:GetTimePeriodRes"/>
	<xsd:element name="removeTimePeriod" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeTimePeriodResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateTimePeriodReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="startTime" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTimeOfDay in AXLEnums.xsd-->
					<xsd:element name="endTime" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTimeOfDay in AXLEnums.xsd-->
					<xsd:element name="startDay" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XDayOfWeek in AXLEnums.xsd-->
					<xsd:element name="endDay" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XDayOfWeek in AXLEnums.xsd-->
					<xsd:element name="monthOfYear" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XMonthOfYear in AXLEnums.xsd-->
					<xsd:element name="dayOfMonth" type="xsd:nonNegativeInteger" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="dayOfMonthEnd" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="monthOfYearEnd" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XMonthOfYear in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateTimePeriod" type="axlapi:UpdateTimePeriodReq"/>
	<xsd:element name="updateTimePeriodResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddTimeScheduleReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="timeSchedule" type="axlapi:XTimeSchedule"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addTimeSchedule" type="axlapi:AddTimeScheduleReq"/>
	<xsd:element name="addTimeScheduleResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getTimeSchedule" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetTimeScheduleRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="timeSchedule" type="axlapi:XTimeSchedule"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTimeScheduleResponse" type="axlapi:GetTimeScheduleRes"/>
	<xsd:element name="removeTimeSchedule" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeTimeScheduleResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateTimeScheduleReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XTimeScheduleTimePeriod" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="timeScheduleCategory" type="axlapi:XTimeScheduleCategory" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateTimeSchedule" type="axlapi:UpdateTimeScheduleReq"/>
	<xsd:element name="updateTimeScheduleResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddTODAccessReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="TODAccess" type="axlapi:XTODAccess"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addTODAccess" type="axlapi:AddTODAccessReq"/>
	<xsd:element name="addTODAccessResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getTODAccess" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetTODAccessRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="TODAccess" type="axlapi:XTODAccess"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTODAccessResponse" type="axlapi:GetTODAccessRes"/>
	<xsd:complexType name="UpdateTODAccessReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String128" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of TODAccess.  If "members" is present, then all current members of this are removed and replaced by the "member" sub-elements.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XTODAccessMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateTODAccess" type="axlapi:UpdateTODAccessReq"/>
	<xsd:element name="updateTODAccessResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeTODAccess" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeTODAccessResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRoutePartitionReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new route partition to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newRoutePartition" type="axlapi:XRoutePartition" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The route partition to be added.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRoutePartition" type="axlapi:AddRoutePartitionReq"/>
	<xsd:element name="addRoutePartitionResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRoutePartitionReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing route partition in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the route partition to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the route partition to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this route partition.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this route partition.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="newTimeScheduleId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The new Time Schedule GUID for this Route Partition. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newTimeScheduleName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="useOriginatingDeviceTimeZone" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="timeZone" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XTimeZone in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRoutePartition" type="axlapi:UpdateRoutePartitionReq"/>
	<xsd:element name="updateRoutePartitionResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveRoutePartitionReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified route partition from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="partitionId" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the route partition to be removed.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="partitionName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the route partition to be removed.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeRoutePartition" type="axlapi:RemoveRoutePartitionReq"/>
	<xsd:element name="removeRoutePartitionResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetRoutePartitionReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified route partition from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="partitionId" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the route partition to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="partitionName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the route partition to be removed.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRoutePartition" type="axlapi:GetRoutePartitionReq"/>
	<xsd:complexType name="GetRoutePartitionRes">
		<xsd:annotation>
			<xsd:documentation>Contains the route partition that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routePartition" type="axlapi:XRoutePartition"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRoutePartitionResponse" type="axlapi:GetRoutePartitionRes"/>
	<xsd:element name="getCSS" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetCSSRes">
		<xsd:annotation>
			<xsd:documentation>Contains the calling search space that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCSSResponse" type="axlapi:GetCSSRes"/>
	<xsd:element name="removeCSS" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeCSSResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCSSReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Calling Search Space to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newCSS" type="axlapi:XCallingSearchSpace" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The calling search space to be added.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCSS" type="axlapi:AddCSSReq"/>
	<xsd:element name="addCSSResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCSSReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Calling Search Space in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the calling search space to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the calling search space to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this calling search space.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this calling search space.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of this calling search space.  If "members" is present, then all current members of this calling search space are removed and replaced by the "member" sub-elements.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XCallingSearchSpaceMember" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCSS" type="axlapi:UpdateCSSReq"/>
	<xsd:element name="updateCSSResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateNumPlanPattern" abstract="true">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="GetNumPlanPattern" abstract="true">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
						<xsd:sequence>
							<xsd:element name="pattern" type="xsd:string"/>
							<xsd:choice>
								<xsd:element name="routePartitionId" type="axlapi:XUUID"/>
								<xsd:element name="routePartitionName" type="axlapi:String50"/>
							</xsd:choice>
						</xsd:sequence>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="GetCallPickupGroupBase" abstract="true">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>This is the uuid of CallPickupGroup</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="name" type="axlapi:String50"/>
						<xsd:sequence>
							<xsd:element name="pattern" type="xsd:string"/>
							<xsd:choice>
								<xsd:element name="routePartitionId" type="axlapi:XUUID"/>
								<xsd:element name="routePartitionName" type="axlapi:String50"/>
							</xsd:choice>
							<xsd:choice>
								<xsd:annotation>
									<xsd:documentation>Some NumPlans do not require a Route Filter, thus these elements can be null.</xsd:documentation>
								</xsd:annotation>
								<xsd:element name="routeFilterId" type="axlapi:XUUID"/>
								<xsd:element name="routeFilterName" type="axlapi:String50"/>
							</xsd:choice>
						</xsd:sequence>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="GetTransPatternReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Translation Pattern from the database. Can specify the translation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTransPattern" type="axlapi:GetTransPatternReq"/>
	<xsd:complexType name="GetTransPatternRes">
		<xsd:annotation>
			<xsd:documentation>Contains the translation pattern that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XNPTranslationPattern"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTransPatternResponse" type="axlapi:GetTransPatternRes"/>
	<xsd:complexType name="RemoveTransPatternReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified translation pattern from the database.  Can specify the translation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeTransPattern" type="axlapi:RemoveTransPatternReq"/>
	<xsd:element name="removeTransPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddTransPatternReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new translation pattern to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newPattern" type="axlapi:XNPTranslationPattern">
						<xsd:annotation>
							<xsd:documentation>The new pattern to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addTransPattern" type="axlapi:AddTransPatternReq"/>
	<xsd:element name="addTransPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateTransPatternReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing translation pattern in the database.  Can specify the translation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new pattern for this tranlsation pattern.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route partition of this tranlsation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="blockEnable" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="calledPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="callingPartyPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlanId" type="axlapi:XUUID"/>
						<xsd:element name="dialPlanName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="digitDiscardInstructionId" type="axlapi:XUUID"/>
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="messageWaiting" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XLampBlinkRate in AXLEnums.xsd-->
					<xsd:element name="networkLocation" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
					<xsd:element name="patternUrgency" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="prefixDigitsOut" type="xsd:string" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRouteFilterId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route filter for this translation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRouteFilterName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="supportOverlapSending" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is not valid for a translation pattern.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="patternPrecedence" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPatternPrecedence in AXLEnums.xsd-->
					<xsd:element name="releaseCause" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XReleaseCauseValue in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new calling search space for this translation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Default value would be Null in case not specified.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="resourcePriorityNamespaceName" type="xsd:string" minOccurs="0"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateTransPattern" type="axlapi:UpdateTransPatternReq"/>
	<xsd:element name="updateTransPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new transformation pattern to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newPattern" type="axlapi:XNPTransformationPattern">
						<xsd:annotation>
							<xsd:documentation>The new pattern to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addTransformationPattern" type="axlapi:AddTransformationPatternReq"/>
	<xsd:element name="addTransformationPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Transformation Pattern from the database. Can specify the transformation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTransformationPattern" type="axlapi:GetTransformationPatternReq"/>
	<xsd:complexType name="GetTransformationPatternRes">
		<xsd:annotation>
			<xsd:documentation>Contains the transformation pattern that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XNPTransformationPattern"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getTransformationPatternResponse" type="axlapi:GetTransformationPatternRes"/>
	<xsd:complexType name="UpdateTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing transformation pattern in the database.  Can specify the transformation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new pattern for this transformation pattern.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XRoutePartition">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route partition of this transformation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="callingPartyTransformationMask" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlanId" type="axlapi:XDialPlan"/>
						<xsd:element name="dialPlanName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstructionId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRouteFilterId" type="axlapi:XRouteFilter">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route filter for this transformation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRouteFilterName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateTransformationPattern" type="axlapi:UpdateTransformationPatternReq"/>
	<xsd:element name="updateTransformationPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified transformation pattern from the database.  Can specify the transformation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeTransformationPattern" type="axlapi:RemoveTransformationPatternReq"/>
	<xsd:element name="removeTransformationPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCalledPartyTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new called party transformation pattern to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newPattern" type="axlapi:XNPCalledPartyTransformationPattern">
						<xsd:annotation>
							<xsd:documentation>The new pattern to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCalledPartyTransformationPattern" type="axlapi:AddCalledPartyTransformationPatternReq"/>
	<xsd:element name="addCalledPartyTransformationPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetCalledPartyTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Called Party Transformation Pattern from the database. Can specify the transformation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>...
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCalledPartyTransformationPattern" type="axlapi:GetCalledPartyTransformationPatternReq"/>
	<xsd:complexType name="GetCalledPartyTransformationPatternRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Called Party transformation pattern that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XNPCalledPartyTransformationPattern"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCalledPartyTransformationPatternResponse" type="axlapi:GetCalledPartyTransformationPatternRes"/>
	<xsd:complexType name="UpdateCalledPartyTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Called Party transformation pattern in the database.  Can specify the transformation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new pattern for this transformation pattern.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route partition of this transformation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="calledPartyTransformationMask" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlanId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="dialPlanName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstructionId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="prefixDigitsOut" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRouteFilterId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route filter for this transformation pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRouteFilterName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="calledPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCalledPartyTransformationPattern" type="axlapi:UpdateCalledPartyTransformationPatternReq"/>
	<xsd:element name="updateCalledPartyTransformationPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveCalledPartyTransformationPatternReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Called Party Transformation pattern from the database.  Can specify the transformation pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeCalledPartyTransformationPattern" type="axlapi:RemoveCalledPartyTransformationPatternReq"/>
	<xsd:element name="removeCalledPartyTransformationPatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetRoutePatternReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Route Pattern from the database.  Can specify the route pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRoutePattern" type="axlapi:GetRoutePatternReq"/>
	<xsd:complexType name="GetRoutePatternRes">
		<xsd:annotation>
			<xsd:documentation>Contains the route pattern that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XNPRoutePattern"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRoutePatternResponse" type="axlapi:GetRoutePatternRes"/>
	<xsd:complexType name="RemoveRoutePatternReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified route pattern from the database.  Can specify the route pattern with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeRoutePattern" type="axlapi:RemoveRoutePatternReq"/>
	<xsd:element name="removeRoutePatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRoutePatternReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Route Pattern to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newPattern" type="axlapi:XNPRoutePattern" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The new route pattern to be added.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRoutePattern" type="axlapi:AddRoutePatternReq"/>
	<xsd:element name="addRoutePatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRoutePatternReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing route pattern in the database.  The route pattern can be specified by its GUID, or by a combination if its pattern, route partition GUID, and route filter GUID.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new pattern for this route pattern.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route partition of this route pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="blockEnable" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="calledPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="dialPlanId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="dialPlanName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50" minOccurs="0"/>
						<xsd:element name="digitDiscardInstructionId" type="axlapi:XUUID" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="messageWaiting" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XLampBlinkRate in AXLEnums.xsd-->
					<xsd:element name="networkLocation" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
					<xsd:element name="patternUrgency" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="prefixDigitsOut" type="xsd:string" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRouteFilterId" type="axlapi:XUUID" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route filter for this route pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRouteFilterName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="supportOverlapSending" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="patternPrecedence" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPatternPrecedence in AXLEnums.xsd-->
					<xsd:element name="releaseCause" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XReleaseCauseValue in AXLEnums.xsd-->
					<xsd:element name="allowDeviceOverride" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="provideOutsideDialtone" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="callingPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="destination" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new destination for this route pattern. Can be a gateway or a route list.  Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:choice>
								<xsd:sequence>
									<xsd:choice>
										<xsd:element name="gateway" type="axlapi:XDevice"/>
										<xsd:element name="gatewayName" type="xsd:string"/>
									</xsd:choice>
								</xsd:sequence>
								<xsd:sequence>
									<xsd:choice>
										<xsd:element name="routeList" type="axlapi:XRouteList"/>
										<xsd:element name="routeListName" type="xsd:string"/>
									</xsd:choice>
								</xsd:sequence>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="authorizationCodeRequired" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="authorizationLevelRequired" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="clientCodeRequired" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="withTag" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read Only</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="withValueClause" type="axlapi:String255" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Read Only</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isdnNSFInfoElement" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If blank tag is passed then the NSF Information is removed for the corresponding route pattern.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">

share/AXLSoap.xsd  view on Meta::CPAN

										<xsd:documentation>This parameter will take effect only if the selected network service has a valid  parameterName in TypeNSFService.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Default value would be Null in case not specified.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="resourcePriorityNamespaceName" type="xsd:string" minOccurs="0"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRoutePattern" type="axlapi:UpdateRoutePatternReq"/>
	<xsd:element name="updateRoutePatternResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetHuntPilotReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Hunt Pilot from the database.  Can specify the hunt pilot with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getHuntPilot" type="axlapi:GetHuntPilotReq"/>
	<xsd:complexType name="GetHuntPilotRes">
		<xsd:annotation>
			<xsd:documentation>Contains the hunt pilot that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pattern" type="axlapi:XNPHuntPilot"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getHuntPilotResponse" type="axlapi:GetHuntPilotRes"/>
	<xsd:complexType name="RemoveHuntPilotReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified hunt pilot from the database.  Can specify the hunt pilot with its GUID or by a combination of its pattern, route partition id, and route filter id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeHuntPilot" type="axlapi:RemoveHuntPilotReq"/>
	<xsd:element name="removeHuntPilotResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddHuntPilotReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Hunt PIlot to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newPattern" type="axlapi:XNPHuntPilot" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The new hunt pilot to be added.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addHuntPilot" type="axlapi:AddHuntPilotReq"/>
	<xsd:element name="addHuntPilotResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateHuntPilotReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing hunt pilot in the database.  The hunt pilot can be specified by its GUID, or by a combination if its pattern, route partition GUID, and route filter GUID.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new pattern for this hunt pilot.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Route Partition of this hunt pilot.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="blockEnable" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="calledPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="callingPartyTransformationMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="useCallingPartyPhoneMask" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callingPartyPrefixDigits" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="dialPlanId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="dialPlanName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="digitDiscardInstructionName" type="axlapi:String50" minOccurs="0"/>
						<xsd:element name="digitDiscardInstructionId" type="axlapi:XUUID" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="messageWaiting" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XLampBlinkRate in AXLEnums.xsd-->
					<xsd:element name="networkLocation" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
					<xsd:element name="patternUrgency" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="prefixDigitsOut" type="xsd:string" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRouteFilterId" type="axlapi:XUUID" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new route filter for this route pattern.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRouteFilterName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedNamePresentationBit" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="patternPrecedence" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPatternPrecedence in AXLEnums.xsd-->
					<xsd:element name="releaseCause" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XReleaseCauseValue in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="calledPartyNumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="destination" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new destination for this hunt pilot. Can only be a hunt list.  Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="huntList" type="axlapi:XHuntList"/>
									<xsd:element name="huntListName" type="xsd:string"/>
								</xsd:choice>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ForwardHuntBusy" type="axlapi:XHuntForwardInfo" minOccurs="0"/>
					<xsd:element name="ForwardHuntNoAnswer" type="axlapi:XHuntForwardInfo" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This is applicable only if Cisco support use 1 Enterprise parameter is set.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="callPickupGroup" type="axlapi:XNPCallPickupGroup">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callPickupGroupName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="ParkMonForwardNoRetrieveDN" type="axlapi:String50" nillable="true" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="ParkMonForwardNoRetrieveCSS" type="axlapi:XCallingSearchSpace" nillable="true" minOccurs="0"/>
						<xsd:element name="ParkMonForwardNoRetrieveCSSName" type="axlapi:String50" nillable="true" minOccurs="0"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateHuntPilot" type="axlapi:UpdateHuntPilotReq"/>
	<xsd:element name="updateHuntPilotResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddLineGroupReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Line Group to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="lineGroup" type="axlapi:XLineGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addLineGroup" type="axlapi:AddLineGroupReq"/>
	<xsd:element name="addLineGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateLineGroupReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing line group in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this line group.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="distributionAlgorithm" type="xsd:string" nillable="false"/><!--This field is of the type axl:XDistributeAlgorithm in AXLEnums.xsd-->
					<xsd:element name="rnaReversionTimeOut" type="xsd:nonNegativeInteger" default="10" nillable="false"/>
					<xsd:element name="huntAlgorithmNoAnswer" type="xsd:string" nillable="false"/><!--This field is of the type axl:XHuntAlgorithm in AXLEnums.xsd-->
					<xsd:element name="huntAlgorithmBusy" type="xsd:string" nillable="false"/><!--This field is of the type axl:XHuntAlgorithm in AXLEnums.xsd-->
					<xsd:element name="huntAlgorithmNotAvailable" type="xsd:string" nillable="false"/><!--This field is of the type axl:XHuntAlgorithm in AXLEnums.xsd-->
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This new line group members for this route group.  All of the line group's current members are replaced by the "member" sub-elements specified.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XLineGroupMember" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>A list of the new members of this Line group.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateLineGroup" type="axlapi:UpdateLineGroupReq"/>
	<xsd:element name="updateLineGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getLineGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetLineGroupRes">
		<xsd:annotation>
			<xsd:documentation>Contains the line group that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="lineGroup" type="axlapi:XLineGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getLineGroupResponse" type="axlapi:GetLineGroupRes"/>
	<xsd:element name="removeLineGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeLineGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRouteGroupReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Route Group to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="routeGroup" type="axlapi:XRouteGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRouteGroup" type="axlapi:AddRouteGroupReq"/>
	<xsd:element name="addRouteGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRouteGroupReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing route group in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this route group.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This new route group members for this route group.  All of the route group's current members are replaced by the "member" sub-elements specified.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XRouteGroupMember" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>A list of the new members of this route group.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRouteGroup" type="axlapi:UpdateRouteGroupReq"/>
	<xsd:element name="updateRouteGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getRouteGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetRouteGroupRes">
		<xsd:annotation>
			<xsd:documentation>Contains the route group that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routeGroup" type="axlapi:XRouteGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRouteGroupResponse" type="axlapi:GetRouteGroupRes"/>
	<xsd:element name="removeRouteGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeRouteGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRouteListReq">
		<xsd:annotation>
			<xsd:documentation>Add a new Route List to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="routeList" type="axlapi:XRouteList"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRouteList" type="axlapi:AddRouteListReq"/>
	<xsd:element name="addRouteListResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRouteListReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Route List in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String50" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the route list to modify (from the Device table).</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The pkid of the route list to modify (from the Device table).</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Route List. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this Route List.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="callManagerGroupName" type="axlapi:String50" nillable="false"/>
						<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="routeListEnabled" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new list of route groups that are part of this route list. A route list must have at least one member.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XRouteListMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRouteList" type="axlapi:UpdateRouteListReq"/>
	<xsd:element name="updateRouteListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getRouteList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetRouteListRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Route List that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routeList" type="axlapi:XRouteList"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRouteListResponse" type="axlapi:GetRouteListRes"/>
	<xsd:element name="removeRouteList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeRouteListResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddHuntListReq">
		<xsd:annotation>
			<xsd:documentation>Add a new Hunt List to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="huntList" type="axlapi:XHuntList"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addHuntList" type="axlapi:AddHuntListReq"/>
	<xsd:element name="addHuntListResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateHuntListReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Hunt List in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String50" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the hunt list to modify (from the Device table).</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The pkid of the hunt list to modify (from the Device table).</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Hunt List. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this Hunt List.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="callManagerGroupName" type="axlapi:String50" nillable="false"/>
						<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="routeListEnabled" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new list of line groups that are part of this route list. A route list must have at least one member.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XHuntListMember" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateHuntList" type="axlapi:UpdateHuntListReq"/>
	<xsd:element name="updateHuntListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getHuntList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetHuntListRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Hunt List that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="huntList" type="axlapi:XHuntList"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getHuntListResponse" type="axlapi:GetHuntListRes"/>
	<xsd:element name="removeHuntList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeHuntListResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCTIRoutePointReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new CTI Route Point to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="routePoint" type="axlapi:XCTIRoutePoint"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCTIRoutePoint" type="axlapi:AddCTIRoutePointReq"/>
	<xsd:element name="addCTIRoutePointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCTIRoutePointReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing CTI Route Point in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:Name128" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:Name128" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name of this Route Point.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String128" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this Route Point.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The new Calling Search Space for this Route Point.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The new Device Pool for this Route Point. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="axlapi:Name128">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The new location for this Route Point.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="locationName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mediaResourceList" type="axlapi:XMediaResourceList">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mediaResourceListName"/>
					</xsd:choice>
					<xsd:element name="networkHoldMOHAudioSourceId" minOccurs="0"/>
					<xsd:element name="userHoldMOHAudioSourceId" minOccurs="0"/>
					<xsd:element name="userLocale" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="lines" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new lines for this phone.  If this element is null, then all lines are removed from this phone.  Note:  If the lines element is present, then all existing lines are removed and replaced with the sub-elements described by...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
								<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded"/>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName" type="axlapi:String100"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCTIRoutePoint" type="axlapi:UpdateCTIRoutePointReq"/>
	<xsd:element name="updateCTIRoutePointResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getCTIRoutePoint" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetCTIRoutePointRes">
		<xsd:annotation>
			<xsd:documentation>Contains the CTI Route Point that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routePoint" type="axlapi:XCTIRoutePoint"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCTIRoutePointResponse" type="axlapi:GetCTIRoutePointRes"/>
	<xsd:element name="removeCTIRoutePoint" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeCTIRoutePointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDHCPSubnetReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new DHCP Subnet to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newDHCPSubnet" type="axlapi:XDHCPSubnet" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDHCPSubnet" type="axlapi:AddDHCPSubnetReq"/>
	<xsd:element name="addDHCPSubnetResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="DHCPSubnetReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDHCPSubnet" type="axlapi:DHCPSubnetReq"/>
	<xsd:complexType name="GetDHCPSubnetRes">
		<xsd:annotation>
			<xsd:documentation>Contains the DHCP Subnet that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="DHCPSubnet" type="axlapi:XDHCPSubnet"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDHCPSubnetResponse" type="axlapi:GetDHCPSubnetRes"/>
	<xsd:complexType name="UpdateDHCPSubnetReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing DHCP Subnet in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the DHCP Subnet  to be modified.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Each DHCPSubnet is associated with a unique DHCP Server.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dhcpServer" type="axlapi:XDHCPServer">
							<xsd:annotation>
								<xsd:documentation>only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dhcpServerName" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="subnetIPAddress" type="xsd:string" minOccurs="0"/>
					<xsd:element name="primaryStartIPAddress" type="xsd:string" minOccurs="0"/>
					<xsd:element name="primaryEndIPAddress" type="xsd:string" minOccurs="0"/>
					<xsd:element name="secondaryStartIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="secondaryEndIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="primaryRouterIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="secondaryRouterIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="subnetMask" type="xsd:string" minOccurs="0"/>
					<xsd:element name="domainName" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="primaryDNSIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="secondaryDNSIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="tftpServerName" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="primaryTFTPServerIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="secondaryTFTPServerIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="bootstrapServerIPAddress" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="arpCacheTimeout" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="ipAddressLeaseTime" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="renewalTime" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="rebindingTime" type="xsd:nonNegativeInteger" default="0" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Value between 0 to 1073741824.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDHCPSubnet" type="axlapi:UpdateDHCPSubnetReq"/>
	<xsd:element name="updateDHCPSubnetResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeDHCPSubnet" type="axlapi:DHCPSubnetReq"/>
	<xsd:element name="removeDHCPSubnetResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDialPlanReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Dial Plan to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="dialPlan" type="axlapi:XDialPlan"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="addDialPlan" type="axlapi:AddDialPlanReq">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="addDialPlanResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="UpdateDialPlanReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing Dial Plan in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Dial Plan.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description for this Dial Plan.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="updateDialPlan" type="axlapi:UpdateDialPlanReq">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="updateDialPlanResponse" type="axlapi:StandardResponse"/>-->
	<xsd:element name="getDialPlan" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetDialPlanRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Dial Plan that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="dialPlan" type="axlapi:XDialPlan"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDialPlanResponse" type="axlapi:GetDialPlanRes"/>
	<!--<xsd:element name="removeDialPlan" type="axlapi:NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="removeDialPlanResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="AddDialPlanTagReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Dial Plan Tag to the databse</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="dialPlanTag" type="axlapi:XDialPlanTag" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="addDialPlanTag" type="axlapi:AddDialPlanTagReq">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="addDialPlanTagResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="UpdateDialPlanTagReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing Dial Plan Tag in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:Name50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The name (or "tag" in the database) for this Dial Plan Tag. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="dialPlan" type="axlapi:XDialPlan" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The new Dial Plan for this Dial Plan Tag. Note that the "uuid" attribute is used. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialPlanName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="operator" type="axlapi:XOperator" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Operator type for this Dial Plan Tag. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="suppressFromRouteFilter" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new boolean value for the suppressFromRouteFilter property of this Dial Plan Tag.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="updateDialPlanTag" type="axlapi:UpdateDialPlanTagReq">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="updateDialPlanTagResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="getDialPlanTagReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:sequence>
							<xsd:element name="name" type="xsd:string"/>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="dialPlanUuid" type="axlapi:XUUID"/>
									<xsd:element name="dialPlanName" type="xsd:string"/>
								</xsd:choice>
							</xsd:sequence>
						</xsd:sequence>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDialPlanTag" type="axlapi:getDialPlanTagReq"/>
	<xsd:complexType name="GetDialPlanTagRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Dial Plan Tag that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="dialPlanTag" type="axlapi:XDialPlanTag"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDialPlanTagResponse" type="axlapi:GetDialPlanTagRes"/>
	<!--<xsd:element name="removeDialPlanTag" type="axlapi:NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="removeDialPlanTagResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="AddCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Call Park num plan to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="callPark" type="axlapi:XNPCallPark" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCallPark" type="axlapi:AddCallParkReq"/>
	<xsd:element name="addCallParkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing Call Park num plan in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new directory number for this Call Park num plan.  Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The new Route Partition GUID for this Call Park num plan. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="callManagerId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new CallManager associated to this Call Park num plan.  Not Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callManagerName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCallPark" type="axlapi:UpdateCallParkReq"/>
	<xsd:element name="updateCallParkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Call Park num plan from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallPark" type="axlapi:GetCallParkReq"/>
	<xsd:complexType name="GetCallParkRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Call Park num plan specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callPark" type="axlapi:XNPCallPark"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallParkResponse" type="axlapi:GetCallParkRes"/>
	<xsd:complexType name="RemoveCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Call Park num plan from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeCallPark" type="axlapi:RemoveCallParkReq"/>
	<xsd:element name="removeCallParkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDirectedCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Directed Call Park num plan to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="directedCallPark" type="axlapi:XNPDirectedCallPark" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDirectedCallPark" type="axlapi:AddDirectedCallParkReq"/>
	<xsd:element name="addDirectedCallParkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateDirectedCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing Directed Call Park num plan in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern">
				<xsd:sequence>
					<xsd:element name="newPattern" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new directory number for this Call Park num plan.  Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The new Route Partition GUID for this Call Park num plan. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:sequence minOccurs="0">
						<xsd:element name="retrievalPrefix" type="xsd:string" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The new prefix used for park-code retrieval. User will dial prefix plus park code to retrieve a parked call. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="reversionPattern" type="xsd:string" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The new pattern used to revert the call when the parked call is not retrieved within retrieval timer. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>To be configured only when reversion pattern is not empty.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="revertCSS">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
							<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XCallingSearchSpace"/>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="revertCSSName" type="axlapi:String50"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDirectedCallPark" type="axlapi:UpdateDirectedCallParkReq"/>
	<xsd:element name="updateDirectedCallParkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetDirectedCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Directed Call Park num plan from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDirectedCallPark" type="axlapi:GetDirectedCallParkReq"/>
	<xsd:complexType name="GetDirectedCallParkRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Directed Call Park num plan specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="directedCallPark" type="axlapi:XNPDirectedCallPark"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDirectedCallParkResponse" type="axlapi:GetDirectedCallParkRes"/>
	<xsd:complexType name="RemoveDirectedCallParkReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Directed Call Park num plan from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetNumPlanPattern"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeDirectedCallPark" type="axlapi:RemoveDirectedCallParkReq"/>
	<xsd:element name="removeDirectedCallParkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCallPickupGroupReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Call Pickup Group to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="callPickup" type="axlapi:XNPCallPickupGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCallPickupGroup" type="axlapi:AddCallPickupGroupReq"/>
	<xsd:element name="addCallPickupGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCallPickupGroupReq">
		<xsd:annotation>
			<xsd:documentation>Modifies and existing Call Pickup Group in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetCallPickupGroupBase">
				<xsd:sequence>
					<xsd:element name="newPattern" type="axlapi:XDirectoryNumber" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="newRoutePartitionId" type="axlapi:XUUID"/>
						<xsd:element name="newRoutePartitionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:XDirectoryNumber" minOccurs="0"/>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>On Addition always the first member added is itself. Do not specify the first member as itself in an Add request . Also make sure that the priority always starts with 1. It will internally be taken care of during Addition an...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XPickupGroupMember" minOccurs="0" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>A list of the new members of this Pickup group.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="pickupNotification" type="axlapi:XPickupNotification" default="No Alert" nillable="false" minOccurs="0"/>
					<xsd:element name="pickupNotificationTimer" type="xsd:nonNegativeInteger" default="6" nillable="false" minOccurs="0"/>
					<xsd:element name="callInfoForPickupNotification" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is applicable when Pickup Notification Policy is "Visual Alert" or "Visual or Audio Alert".</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="callingPartyInfo" type="xsd:boolean" default="false" nillable="false"/>
								<xsd:element name="calledPartyInfo" type="xsd:boolean" default="false" nillable="false"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCallPickupGroup" type="axlapi:UpdateCallPickupGroupReq"/>
	<xsd:element name="updateCallPickupGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetCallPickupGroupReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Call Pickup Group from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetCallPickupGroupBase"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallPickupGroup" type="axlapi:GetCallPickupGroupReq"/>
	<xsd:complexType name="GetCallPickupGroupRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Call Pickup Group specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callPickup" type="axlapi:XNPCallPickupGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallPickupGroupResponse" type="axlapi:GetCallPickupGroupRes"/>
	<xsd:complexType name="RemoveCallPickupGroupReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Call Pickup Group from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetCallPickupGroupBase"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeCallPickupGroup" type="axlapi:RemoveCallPickupGroupReq"/>
	<xsd:element name="removeCallPickupGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddDDIReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Digit Discard Instruction to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="ddi" type="axlapi:XDigitDiscardInstruction"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="addDDI" type="axlapi:AddDDIReq">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="addDDIResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="UpdateDDIReq">
		<xsd:annotation>
			<xsd:documentation>Modifies and existing Digit Discard Instruction in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:Name50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Digit Discard Instruction. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The GUID or name of the new Dial Plan for this Digit Discard Instruction.  Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dialPlanId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="dialPlanName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The "members" element will contain the new list of members of this Digit Discard Instruction.  If the "members" element is present, any existing members are deleted and replaced by the new "member" elements.  Nullable.</xsd:...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XDigitDiscardInstructionMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="updateDDI" type="axlapi:UpdateDDIReq">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="updateDDIResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="getDDIReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:sequence>
							<xsd:element name="name" type="xsd:string"/>
							<xsd:sequence>
								<xsd:choice>
									<xsd:element name="dialPlanUuid" type="axlapi:XUUID"/>
									<xsd:element name="dialPlanName" type="xsd:string"/>
								</xsd:choice>
							</xsd:sequence>
						</xsd:sequence>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDDI" type="axlapi:getDDIReq"/>
	<xsd:complexType name="GetDDIRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Digit Discard Instruction specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="ddi" type="axlapi:XDigitDiscardInstruction"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDDIResponse" type="axlapi:GetDDIRes"/>
	<!--<xsd:element name="removeDDI" type="axlapi:NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>This API call is experimental and not supported in normal operation.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="removeDDIResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="CreateAutogeneratedProfileReq">
		<xsd:annotation>
			<xsd:documentation>This method uses the specified phone to create an auto-generated device profile.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="phoneName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The name of the phone to use to create the profile.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="phoneId" type="axlapi:XUUID">
						<xsd:annotation>
							<xsd:documentation>The GUID of the phone to use to create the profile.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<!--<xsd:element name="createAutogeneratedProfile" type="axlapi:CreateAutogeneratedProfileReq">
			<xsd:annotation>
				<xsd:documentation>This API call is experimental and not supported in normal operation.				</xsd:documentation>
			</xsd:annotation>
	</xsd:element>
	<xsd:element name="createAutogeneratedProfileResponse" type="axlapi:StandardResponse"/>-->
	<xsd:complexType name="ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This abstract method is to be extended by the "list" methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="searchString" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The string to search for.  Can contain SQL wildcard characters.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="skip" type="xsd:unsignedLong" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>It will be used onlt when first tag is specified. </xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="first" type="xsd:unsignedLong" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="ListPhoneByNameReq">
		<xsd:annotation>
			<xsd:documentation>This method searches for all phones whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListBySearchString"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listPhoneByName" type="axlapi:ListPhoneByNameReq"/>
	<xsd:complexType name="ListPhoneResponse">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listPhoneByXXX methods.  It includes the phone GUID, name, and product.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="phone" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String50" nillable="false"/>
											<xsd:element name="product" type="xsd:string" nillable="false"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
											<xsd:element name="model" type="xsd:string" nillable="false"/><!--This field is of the type axl:XModel in AXLEnums.xsd-->
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="ListPhoneByNameRes">
		<xsd:annotation>
			<xsd:documentation>The response to listPhoneByName.  For each phone returned, lists its name, product type, and model type.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListPhoneResponse"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listPhoneByNameResponse" type="axlapi:ListPhoneByNameRes"/>
	<xsd:complexType name="ListPhoneByDescriptionReq">
		<xsd:annotation>
			<xsd:documentation>This method searches for all phones whose description matches the specified search string.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListBySearchString"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listPhoneByDescription" type="axlapi:ListPhoneByDescriptionReq"/>
	<xsd:complexType name="ListPhoneByDescriptionRes">
		<xsd:annotation>
			<xsd:documentation>The response to listPhoneByDescription.  For each phone returned, lists its name, product type, and model type.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListPhoneResponse"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listPhoneByDescriptionResponse" type="axlapi:ListPhoneByDescriptionRes"/>
	<xsd:complexType name="ListUserByNameReq">
		<xsd:annotation>
			<xsd:documentation>This method searches for all users whose first and last names match the given pattern.  The '*' character is used as the wildcard.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="firstname" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The first name to search for.  Can contain the '*' character as a wildcard.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="lastname" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The last name to search for.  Can contain the '*' character as a wildcard.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="searchLimit" type="xsd:int">
						<xsd:annotation>
							<xsd:documentation>The maximum number of users to be displayed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="skip" type="xsd:unsignedLong" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>It will be used only when first tag is specified and searchLimit tag value is zero</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="first" type="xsd:unsignedLong" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>It will be used only when searchLimit tag value is zero</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listUserByName" type="axlapi:ListUserByNameReq"/>
	<xsd:complexType name="ListUserByNameRes">
		<xsd:annotation>
			<xsd:documentation>The is element will contain all the users who matched the search string supplied by listUserByName.  For each user returned, the user's ldapRN, firstname, and lastname is specified.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="user" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="firstname" type="xsd:string"/>
											<xsd:element name="lastname" type="xsd:string"/>
										</xsd:sequence>
										<xsd:attribute name="userid" type="xsd:string" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listUserByNameResponse" type="axlapi:ListUserByNameRes"/>
	<xsd:complexType name="ListRoutePlanByTypeReq">
		<xsd:annotation>
			<xsd:documentation>This request returns the all entries in the NumPlan table which match the type given.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="usage" type="xsd:string" nillable="false"><!--This field is of the type axl:XPatternUsage in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The type (pattern usage) of Route Plan to return.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listRoutePlanByType" type="axlapi:ListRoutePlanByTypeReq"/>
	<xsd:complexType name="ListRoutePlanByTypeRes">
		<xsd:annotation>
			<xsd:documentation>Response to listRoutePlanByType request.  For each route plan returned, the directory number, route partition name, and usage type is specified.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routePlan" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="directoryNumber" type="axlapi:XDirectoryNumber"/>
											<xsd:element name="routePartitionName" type="axlapi:String50"/>
											<xsd:element name="usage" type="xsd:string"/><!--This field is of the type axl:XPatternUsage in AXLEnums.xsd-->
											<xsd:element name="routeFilterName" type="axlapi:String50"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listRoutePlanByTypeResponse" type="axlapi:ListRoutePlanByTypeRes"/>
	<xsd:complexType name="GetNumDevicesReq">
		<xsd:annotation>
			<xsd:documentation>This method returns the number of devices found.  The caller specifies what class of device they want counted.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="class" type="xsd:string" nillable="false"><!--This field is of the type axl:XClass in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The class of device that is to be counted.  Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getNumDevices" type="axlapi:GetNumDevicesReq"/>
	<xsd:complexType name="GetNumDevicesRes">
		<xsd:annotation>
			<xsd:documentation>Response to GetNumDevices.  Returns an integer value which is the number of devices found.  The class of device counted is represented by the "class" attribute.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:extension base="xsd:nonNegativeInteger"/>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getNumDevicesResponse" type="axlapi:GetNumDevicesRes"/>
	<xsd:complexType name="ListServiceParametersReq">
		<xsd:annotation>
			<xsd:documentation>This method can be used to list all service parameters (include Enterprise-Wide parameters) for a particular Process Node and service type.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="nodeName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The process node.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="serviceType" type="xsd:string" nillable="false"><!--This field is of the type axl:XService in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The type of service.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listServiceParameters" type="axlapi:ListServiceParametersReq"/>
	<xsd:complexType name="ListServiceParametersRes">
		<xsd:annotation>
			<xsd:documentation>Contains all the service parameters as found by ListServiceParameters.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:annotation>
							<xsd:documentation>A list of "param" elements.  Eache "param" element represents a service parameter.  If no service parameters were found, then no "param" elements will be present.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="param" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="xsd:string" nillable="false">
												<xsd:annotation>
													<xsd:documentation>The name of this service parameter.</xsd:documentation>
												</xsd:annotation>
											</xsd:element>
											<xsd:element name="value" type="xsd:string" nillable="false">
												<xsd:annotation>
													<xsd:documentation>The value of this service parameter.</xsd:documentation>
												</xsd:annotation>
											</xsd:element>
										</xsd:sequence>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listServiceParametersResponse" type="axlapi:ListServiceParametersRes"/>
	<xsd:complexType name="ListCSSByNameReq">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Calling Search Spaces in the database whose name matches the search string.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListBySearchString"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listCSSByName" type="axlapi:ListCSSByNameReq"/>
	<xsd:complexType name="ListCSSResponse">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listCSSByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="ListCSSByNameRes">
		<xsd:annotation>
			<xsd:documentation>The response to listCSSByName. Contains all the Calling Search Spaces that matched the search string.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListCSSResponse"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listCSSByNameResponse" type="axlapi:ListCSSByNameRes"/>
	<xsd:complexType name="NameAndGUIDRequest">
		<xsd:annotation>
			<xsd:documentation>This is a utility object that created because many of the Get, Remove, and Update methods allow the user to specify either the name or the uuid.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String100" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="GUIDRequest">
		<xsd:annotation>
			<xsd:documentation>This is a utility object that created because many of the Get, Remove, and Update methods allow the user to specify  the uuid.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddDevicePoolReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new device pool to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="devicePool" type="axlapi:XDevicePool" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addDevicePool" type="axlapi:AddDevicePoolReq"/>
	<xsd:element name="addDevicePoolResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateDevicePoolReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing device pool in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The name of the Device Pool to update. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The UUID of the Device Pool to update. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Device Pool. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="autoSearchSpaceId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="autoSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="dateTimeSettingId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="dateTimeSettingName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="callManagerGroupId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="callManagerGroupName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="mediaResourceListId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="mediaResourceListName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="regionId" type="axlapi:XUUID" nillable="false"/>
						<xsd:element name="regionName" type="axlapi:String50" nillable="false"/>
					</xsd:choice>
					<xsd:element name="networkLocale" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="srstInfoId" type="axlapi:XUUID"/>
						<xsd:element name="srstName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="connectionMonitorDuration" type="xsd:int" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>-1 means use system default.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="locationName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mobilityCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="mobilityCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="physicalLocationId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="physicalLocationName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="deviceMobilityGroupId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="deviceMobilityGroupName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="revertPriority" type="axlapi:XRevertPriority" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The value accepted and retrieved from the database for this field will be of type XRevertPriority in AXLEnums.xsd.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="singleButtonBarge" type="axlapi:XBarge" nillable="false" minOccurs="0"/>
					<xsd:element name="joinAcrossLines" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cdpnTransformationCSSId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="localRouteGroupId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="localRouteGroupName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="nationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="internationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="subscriberPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationFilterName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateDevicePool" type="axlapi:UpdateDevicePoolReq"/>
	<xsd:element name="updateDevicePoolResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getDevicePool" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetDevicePoolRes">
		<xsd:annotation>
			<xsd:documentation>Contains the device pool specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="devicePool" type="axlapi:XDevicePool"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getDevicePoolResponse" type="axlapi:GetDevicePoolRes"/>
	<xsd:element name="removeDevicePool" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeDevicePoolResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCallManagerGroupReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new CallManager group to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCallManagerGroup" type="axlapi:AddCallManagerGroupReq"/>
	<xsd:element name="addCallManagerGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCallManagerGroupReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing CallManager group in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="tftpDefault" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of this CallManager group.  If "members" is present, then all current members of this CallManager group are removed and replaced by the "member" sub-elements.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XCallManagerMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCallManagerGroup" type="axlapi:UpdateCallManagerGroupReq"/>
	<xsd:element name="updateCallManagerGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getCallManagerGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetCallManagerGroupRes">
		<xsd:annotation>
			<xsd:documentation>Contains the CallManager group specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallManagerGroupResponse" type="axlapi:GetCallManagerGroupRes"/>
	<xsd:element name="removeCallManagerGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeCallManagerGroupResponse" type="axlapi:StandardResponse"/>
	<!-- VG224 Gateway -->
	<xsd:complexType name="AddVG224Req" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds one new VG224 Gateway to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newVG224" type="axlapi:XVG224"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addVG224" type="axlapi:AddVG224Req"/>
	<xsd:element name="addVG224Response" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetVG224Req" final="#all">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified VG224 gateway info from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the VG224 Gateway to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="domainName" type="axlapi:String64" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The domain name of the VG224 to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getVG224" type="axlapi:GetVG224Req"/>
	<xsd:complexType name="GetVG224Res">
		<xsd:annotation>
			<xsd:documentation>Returns the VG224 specified by the GetVG224 request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="vg224" type="axlapi:XVG224"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getVG224Response" type="axlapi:GetVG224Res"/>
	<xsd:complexType name="RemoveVG224Req">
		<xsd:annotation>
			<xsd:documentation>Removes the specified VG224 Gateway from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the VG224 to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="domainName" type="axlapi:String64" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The domain name of the VG224 to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeVG224" type="axlapi:RemoveVG224Req"/>
	<xsd:element name="removeVG224Response" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateVG224Req">
		<xsd:annotation>
			<xsd:documentation>Updates an existing VG224 Gateway information in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="domainName" type="axlapi:String64">
							<xsd:annotation>
								<xsd:documentation>The domain name of the VG224 that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the VG224 that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newDomainName" type="axlapi:String64" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new domain name of the VG224.  Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String100" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the VG224.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Call Manager Group for this VG224.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callManagerGroupName" type="axlapi:String50" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The name of the new Call  Manager Group name for this VG224. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="units" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The units element is optional when a new VG224 is being added  and can be added using updateVG224Gateway.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="unit" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>In the IOS model, UNIT corresponds to a SLOT (Slot Module).</xsd:documentation>
									</xsd:annotation>
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XMGCPSlotModule in AXLEnums.xsd-->
											<xsd:element name="subunits" minOccurs="0">
												<xsd:complexType>
													<xsd:sequence minOccurs="0">
														<xsd:element name="subunit" minOccurs="0">
															<xsd:complexType>
																<xsd:annotation>
																	<xsd:documentation>In the IOS model, SUBUNIT corresponds to a VIC, and a VIC contains 1 or more PORTs.</xsd:documentation>
																</xsd:annotation>
																<xsd:sequence>
																	<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XMGCPVic in AXLEnums.xsd-->
																	<xsd:element name="endpoints" minOccurs="0">
																		<xsd:complexType>
																			<xsd:annotation>
																				<xsd:documentation>The max attribute identifies the maximum number of endpoints this endpoint list is allowed.</xsd:documentation>
																			</xsd:annotation>
																			<xsd:sequence minOccurs="0">
																				<xsd:element name="endpoint" minOccurs="0" maxOccurs="unbounded">
																					<xsd:annotation>
																						<xsd:documentation>If new endpoints are mentioned to be added to the gateway, the tags would be mandatory as in the addVG224Req.</xsd:documentation>
																					</xsd:annotation>
																					<xsd:complexType>
																						<xsd:annotation>
																							<xsd:documentation>In the IOS model, ENDPOINT corresponds to a PORT inside a VIC.</xsd:documentation>
																						</xsd:annotation>
																						<xsd:complexContent>
																							<xsd:extension base="axlapi:APIRequest">
																								<xsd:sequence>
																									<xsd:choice>
																										<xsd:element name="name" type="axlapi:UniqueString128">
																											<xsd:annotation>
																												<xsd:documentation>The name of the phone that you want to update.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="uuid" type="axlapi:XUUID">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the phone that you want to update.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																									</xsd:choice>
																									<xsd:element name="description" type="axlapi:String128" minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>The new description of the phone.  Nullable.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the new Calling Search Space for this phone. Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="callingSearchSpaceName" type="axlapi:String50">
																											<xsd:annotation>
																												<xsd:documentation>The name of the new Calling Search Space for this phone.  Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="devicePoolId" type="axlapi:XUUID">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the new Device Pool for this phone.  Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="devicePoolName" type="axlapi:UniqueString50">
																											<xsd:annotation>
																												<xsd:documentation>The name of the new Device Pool for this phone. Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID" nillable="true">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the new Common Device Config for this phone.  Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="commonDeviceConfigName" type="axlapi:UniqueString50" nillable="true">
																											<xsd:annotation>
																												<xsd:documentation>The name of the new Common Device Config for this phone. Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>Only applicable to Phone.</xsd:documentation>
																										</xsd:annotation>
																										<xsd:element name="commonPhoneConfigId" type="axlapi:XUUID" nillable="false">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the new Common Phone Config for this phone. Not Nullable. </xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="commonPhoneConfigName" type="axlapi:String50" nillable="false"/>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="locationId" type="axlapi:XUUID">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the new Location for this phone.  Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="locationName" type="xsd:Name">
																											<xsd:annotation>
																												<xsd:documentation>The name of the new Location for this phone.  Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID"/>
																										<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50"/>
																									</xsd:choice>
																									<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
																										<xsd:annotation>
																											<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
																										<xsd:annotation>
																											<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
																										</xsd:annotation>
																									</xsd:element>
																									<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
																									<xsd:choice minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>This tag is valid only for phones, SIP trunks and voice mail ports. Not nullable.</xsd:documentation>
																										</xsd:annotation>
																										<xsd:element name="securityProfileId" type="axlapi:XUUID">
																											<xsd:annotation>
																												<xsd:documentation>The GUID of the new Security Profile for this phone.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="securityProfileName" type="axlapi:UniqueString50"/>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
																										<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
																									</xsd:choice>
																									<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0"/>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
																											<xsd:annotation>
																												<xsd:documentation>Only uuid attribute is read by AXL API.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="geoLocationName" type="axlapi:String100"/>
																									</xsd:choice>
																									<xsd:choice minOccurs="0">
																										<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter">
																											<xsd:annotation>
																												<xsd:documentation>Only uuid attribute is read by AXL API.  Valid only for  gateways using SCCP Protocol</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="geoLocationFilterName" type="axlapi:String100"/>
																									</xsd:choice>
																									<xsd:element name="lines" minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>The new lines for this phone.  If this element is null, then all lines are removed from this phone.  Note:  If the lines element is present, then all existing lines are removed and replaced with the sub-e...
																										</xsd:annotation>
																										<xsd:complexType>
																											<xsd:choice>
																												<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
																												<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded"/>
																											</xsd:choice>
																										</xsd:complexType>
																									</xsd:element>
																									<xsd:sequence minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>These tags are applicable only for MGCP.</xsd:documentation>
																										</xsd:annotation>
																										<xsd:element name="packetCaptureMode" type="xsd:string" default="None" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
																										<xsd:element name="packetCaptureDuration" type="xsd:positiveInteger" default="60" minOccurs="0"/>
																										<xsd:element name="transmitUTF8" type="xsd:boolean" nillable="false" minOccurs="0"/>
																										<xsd:element name="ports">
																											<xsd:annotation>
																												<xsd:documentation>The list of ports on the gateway.</xsd:documentation>
																											</xsd:annotation>
																											<xsd:complexType>
																												<xsd:annotation>
																													<xsd:documentation>List of analog ports on an analog gateway.</xsd:documentation>
																												</xsd:annotation>
																												<xsd:sequence minOccurs="0">
																													<xsd:element name="port" maxOccurs="unbounded">
																														<xsd:complexType>
																															<xsd:annotation>
																																<xsd:documentation>An analog port on an analog gateway. The portNumber attribute  identifies the ordinal value of the port in the gateway.</xsd:documentation>
																															</xsd:annotation>
																															<xsd:sequence minOccurs="0">
																																<xsd:element name="unattendedPort" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
																																<xsd:element name="trunkDirection" type="xsd:string"/><!--This field is of the type axl:XTrunkDirection in AXLEnums.xsd-->
																																<xsd:sequence minOccurs="0">
																																	<xsd:annotation>
																																		<xsd:documentation>For Gorund Start/Loop Start type of endpoint.</xsd:documentation>
																																	</xsd:annotation>
																																	<xsd:element name="attendantDN" type="axlapi:XDirectoryNumber"/>
																																</xsd:sequence>
																																<xsd:sequence minOccurs="0">
																																	<xsd:annotation>
																																		<xsd:documentation>For POTS type of endpoint.</xsd:documentation>
																																	</xsd:annotation>
																																	<xsd:element name="prefixDN" type="axlapi:XDirectoryNumber" minOccurs="0"/>
																																	<xsd:element name="numDigits" type="xsd:nonNegativeInteger" nillable="false"/>
																																	<xsd:element name="expectedDigits" type="xsd:nonNegativeInteger"/>
																																	<xsd:element name="smdiPortNumber" type="xsd:nonNegativeInteger">
																																		<xsd:annotation>
																																			<xsd:documentation>Not used by T1 Ports.</xsd:documentation>
																																		</xsd:annotation>
																																	</xsd:element>
																																</xsd:sequence>
																															</xsd:sequence>
																															<xsd:attribute name="uuid" type="axlapi:XUUID"/>
																															<xsd:attribute name="portNumber" type="xsd:positiveInteger" use="required"/>
																														</xsd:complexType>
																													</xsd:element>
																												</xsd:sequence>
																											</xsd:complexType>
																										</xsd:element>
																									</xsd:sequence>
																									<xsd:element name="userLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
																									<xsd:element name="networkLocale" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
																									<xsd:sequence minOccurs="0">
																										<xsd:annotation>
																											<xsd:documentation>These tags are applicable only for SCCP.</xsd:documentation>
																										</xsd:annotation>
																										<xsd:element name="unattendedPort" type="xsd:boolean" nillable="false" minOccurs="0"/>
																										<xsd:choice minOccurs="0">
																											<xsd:element name="subscribeCallingSearchSpace" type="axlapi:XCallingSearchSpace" nillable="true">
																												<xsd:annotation>
																													<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
																												</xsd:annotation>
																											</xsd:element>
																											<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
																										</xsd:choice>
																										<xsd:element name="allowCtiControlFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
																										<xsd:element name="remoteDevice" type="xsd:boolean" nillable="false" minOccurs="0"/>
																										<xsd:choice minOccurs="0">
																											<xsd:element name="phoneTemplate" type="axlapi:XPhoneTemplate">
																												<xsd:annotation>
																													<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
																												</xsd:annotation>
																											</xsd:element>
																											<xsd:element name="phoneTemplateName" type="axlapi:String50" nillable="false"/>
																										</xsd:choice>
																										<xsd:choice>
																											<xsd:element name="presenceGroup" type="axlapi:XPresenceGroup" nillable="false">
																												<xsd:annotation>
																													<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
																												</xsd:annotation>
																											</xsd:element>
																											<xsd:element name="presenceGroupName" type="axlapi:String50" nillable="false"/>
																										</xsd:choice>
																										<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" nillable="false" minOccurs="0">
																											<xsd:annotation>
																												<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="deviceMobilityMode" type="xsd:string" default="Default" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
																											<xsd:annotation>
																												<xsd:documentation>Specifies if the phone is configured for device mobility feature or not</xsd:documentation>
																											</xsd:annotation>
																										</xsd:element>
																										<xsd:element name="hlogStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
																										<xsd:element name="ownerUserId" type="axlapi:String255" nillable="true" minOccurs="0"/>
																									</xsd:sequence>
																								</xsd:sequence>
																								<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
																							</xsd:extension>
																						</xsd:complexContent>
																					</xsd:complexType>
																					<!--VG224 EndPoint Schema Ends-->
																				</xsd:element>
																			</xsd:sequence>
																			<xsd:attribute name="max" type="xsd:positiveInteger"/>
																		</xsd:complexType>
																		<!--VG224 EndPoints Schema Ends-->
																	</xsd:element>
																</xsd:sequence>
															</xsd:complexType>
															<!--VG224 SubUnit Schema Ends-->
														</xsd:element>
													</xsd:sequence>
												</xsd:complexType>
												<!--VG224 SubUnits Schema Ends-->
											</xsd:element>
										</xsd:sequence>
									</xsd:complexType>
									<!--VG224 Unit Schema Ends-->
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
						<!--VG224 Units Schema Ends-->
					</xsd:element>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>It contains Product Specific Configuration Information like Fax mode, Modem Passthorugh, etc.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateVG224" type="axlapi:UpdateVG224Req"/>
	<xsd:element name="updateVG224Response" type="axlapi:StandardResponse"/>
	<!-- vg224 gateway ends -->
	<xsd:complexType name="AddVoiceMailPilotReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new VoiceMail Pilot to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="voiceMailPilot" type="axlapi:XVoiceMailPilot" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addVoiceMailPilot" type="axlapi:AddVoiceMailPilotReq"/>
	<xsd:element name="addVoiceMailPilotResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateVoiceMailPilotReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Updates the specified Voice Mail Pilot from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the Voice Mail Pilot to be updated</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:sequence>
							<xsd:element name="dirn" type="axlapi:XDirectoryNumber" nillable="true"/>
							<xsd:choice>
								<xsd:element name="CSS" type="axlapi:XCallingSearchSpace" nillable="true">
									<xsd:annotation>
										<xsd:documentation>Only the UUID attribute is read by the AXL API.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="CSSName" type="axlapi:UniqueName50" nillable="true"/>
							</xsd:choice>
						</xsd:sequence>
					</xsd:choice>
					<xsd:sequence minOccurs="0">
						<xsd:element name="newdirn" type="axlapi:XDirectoryNumber" nillable="true" minOccurs="0"/>
						<xsd:choice minOccurs="0">
							<xsd:element name="newCSS" type="axlapi:XUUID" nillable="true" minOccurs="0"/>
							<xsd:element name="newCSSName" type="axlapi:UniqueName50" nillable="true" minOccurs="0"/>
						</xsd:choice>
					</xsd:sequence>
					<xsd:element name="description" type="xsd:string" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the device.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isDefault" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Setting isDefault tag as false would not disable this VoiceMailPilot as Default. Instead, the corresponding tag of another VoiceMailPilot should be set to true</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateVoiceMailPilot" type="axlapi:UpdateVoiceMailPilotReq"/>
	<xsd:element name="updateVoiceMailPilotResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetVoiceMailPilotReq" final="#all">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Voice Mail Pilot from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the Voice Mail Pilot to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:sequence>
						<xsd:element name="dirn" type="axlapi:XDirectoryNumber" nillable="true"/>
						<xsd:choice>
							<xsd:element name="CSS" type="axlapi:XUUID" nillable="true"/>
							<xsd:element name="CSSName" type="axlapi:UniqueName50" nillable="true"/>
						</xsd:choice>
					</xsd:sequence>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getVoiceMailPilot" type="axlapi:GetVoiceMailPilotReq"/>
	<xsd:complexType name="GetVoiceMailPilotRes">
		<xsd:annotation>
			<xsd:documentation>Contains the VoiceMail Pilot specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="voiceMailPilot" type="axlapi:XVoiceMailPilot"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getVoiceMailPilotResponse" type="axlapi:GetVoiceMailPilotRes"/>
	<xsd:complexType name="RemoveVoiceMailPilotReq" final="#all">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Voice Mail Pilot from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the Voice Mail Pilot to be removed</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:sequence>
						<xsd:element name="dirn" type="axlapi:XDirectoryNumber" nillable="true"/>
						<xsd:choice>
							<xsd:element name="CSS" type="axlapi:XUUID" nillable="true"/>
							<xsd:element name="CSSName" type="axlapi:UniqueName50" nillable="true"/>
						</xsd:choice>
					</xsd:sequence>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeVoiceMailPilot" type="axlapi:RemoveVoiceMailPilotReq"/>
	<xsd:complexType name="AddVoiceMailProfileReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new VoiceMail Profile to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="voiceMailProfile" type="axlapi:XVoiceMailProfile" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addVoiceMailProfile" type="axlapi:AddVoiceMailProfileReq"/>
	<xsd:element name="addVoiceMailProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateVoiceMailProfileReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing VoiceMail Profile in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the device.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isDefault" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="voiceMailboxMask" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="voiceMailPilot" type="axlapi:XUUID" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Only UUID attribute is read by the AXL API.Setting isDefault tag as false would not disable this VoiceMailProfile as Default. Instead, another VoiceMailProfile should be set to true</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateVoiceMailProfile" type="axlapi:UpdateVoiceMailProfileReq"/>
	<xsd:element name="updateVoiceMailProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getVoiceMailProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetVoiceMailProfileRes">
		<xsd:annotation>
			<xsd:documentation>Contains the VoiceMail Profile specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="voiceMailProfile" type="axlapi:XVoiceMailProfile"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getVoiceMailProfileResponse" type="axlapi:GetVoiceMailProfileRes"/>
	<xsd:element name="removeVoiceMailProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeVoiceMailProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeVoiceMailPilotResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddVoiceMailPortReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new VoiceMail Port to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="voiceMailPort" type="axlapi:XVoiceMailPort" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addVoiceMailPort" type="axlapi:AddVoiceMailPortReq"/>
	<xsd:element name="addVoiceMailPortResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateVoiceMailPortReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing VoiceMail Port in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the device.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Calling Search Space for this device. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The name of the new Calling Search Space for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Device Pool for this device.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the new Device Pool for this device. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Location for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="locationName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Location for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mediaResourceListId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Media Resource List for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mediaResourceListName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Media Resource List for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID"/>
						<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="loadInformation" type="axlapi:XLoadInformation" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new load information for this device.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new vendor configuration XML for this device. Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="traceFlag" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new trace flag for this device.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new security profile for this device. Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="securityProfileId" type="axlapi:XUUID"/>
						<xsd:element name="securityProfileName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:element name="line" type="axlapi:XLine" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new line for this voice mail port.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only uuid attribute is read by AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName" type="axlapi:String100"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateVoiceMailPort" type="axlapi:UpdateVoiceMailPortReq"/>
	<xsd:element name="updateVoiceMailPortResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getVoiceMailPort" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetVoiceMailPortRes">
		<xsd:annotation>
			<xsd:documentation>Contains the VoiceMail Port specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="voiceMailPort" type="axlapi:XVoiceMailPort"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getVoiceMailPortResponse" type="axlapi:GetVoiceMailPortRes"/>
	<xsd:element name="removeVoiceMailPort" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeVoiceMailPortResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddGatewayEndpointReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new Gateway endpoint to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="gateway" type="axlapi:XGateway" nillable="false">
						<xsd:annotation>
							<xsd:documentation>XGateway is abstract, so the  user of AddGatewayEndpoint must specify a complex type that extends XGateway.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addGatewayEndpoint" type="axlapi:AddGatewayEndpointReq"/>
	<xsd:element name="addGatewayEndpointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateGatewayEndpointReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing Gateway endpoint in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the device.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="protocolSide" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XProtocolSide in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Protocol Side can only be modified on PRI gateways. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Calling Search Space for this device. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The name of the new Calling Search Space for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Device Pool for this device.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the new Device Pool for this device. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="networkLocation" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The new Device Destination flag for Trunk to Trunk Transfer and Drop Conference Feature is required for most gateways, except FXS gateways.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Location for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="locationName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Location for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mediaResourceListId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Media Resource List for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="mediaResourceListName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Media Resource List for this device.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID"/>
						<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="loadInformation" type="axlapi:XLoadInformation" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new load information for this device.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new vendor configuration XML for this device. Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="traceFlag" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new trace flag for this device.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="country" type="xsd:string" nillable="true" minOccurs="0"><!--This field is of the type axl:XCountry in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Also known as networkLocale.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="unattendedPort" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable to PRI gateways.For analog and T1 gateways, this tag comes under ports.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not appicable to T1-CAS and FXO ports.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not appicable to T1-CAS and FXO ports.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="packetCaptureMode" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
					<xsd:element name="packetCaptureDuration" type="xsd:positiveInteger" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>At this point, you can edit the elements specific to PRI, BRI, T1, or Analog gateways.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="analog">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="ports" type="axlapi:XAnalogPortList" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>The new list of ports for this gateway.  This list of ports replaces any pre-existing ports on this gateway.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkSelectionOrder" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XTrunkSelectionOrder in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>The new trunk selection order for this gateway. Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="pri">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="ASN1ROSEOIDEncoding" type="axlapi:String50" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="QSIGVariant" type="axlapi:String50" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="acceptInboundRDNIS" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="calledPlan" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="calledPri" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callerIDDN" type="axlapi:XDirectoryNumber" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingPartySelection" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingPlan" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingPri" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="chanIE" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="clockReference" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XClockReference in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="csuParam" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XCSUParam in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="dChannelEnable" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="direction" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="displayIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="encode" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XEncode in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="fdlChannel" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XFDLChannel in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>This field has been deprecated for SeaDragon.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="firstDelay" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="interfaceId" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Neither the present attribute nor the value of this element is nullable.</xsd:documentation>
										</xsd:annotation>
										<xsd:complexType>
											<xsd:simpleContent>
												<xsd:extension base="xsd:nonNegativeInteger">
													<xsd:attribute name="present" type="xsd:boolean" use="required"/>
												</xsd:extension>
											</xsd:simpleContent>
										</xsd:complexType>
									</xsd:element>
									<xsd:element name="intraDelay" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="mcdnEnable" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="numberIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="numDigits" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable. The value of numDigits must be either 0 to 32 or 99.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="passingPrecedenceLevelThroughUUIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="prefix" type="xsd:string" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="connectedLinePresentationBit" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="connectedPBX" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XConnectedPBX in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="priProtocol" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XPriProtocol in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="securityAccessLevel" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sendCallingNameInFacilityIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sendEXLeadingCharInDispIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sendRestart" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="setupNonISDNPI" type="xsd:boolean" nillable="false" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sigDigits" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>This tag enables the significant digits for the gateway; if the tag is set to true, the value of the 'numDigits' element is used as Significant Digits for the gateway. This tag should have a value of false if numDigits i...
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="span" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="statusPoll" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="stripCountOut" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkPadRx" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkPadTx" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkLevel" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XTrunkLevel in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="yellowAlarm" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XYellowAlarm in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="zeroSuppression" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XZeroSuppression in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sMDIBasePort" type="xsd:positiveInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="protocolProfile91NameOnly" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="GClearEnable" type="xsd:boolean" default="false" minOccurs="0"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="bri">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="acceptInboundRDNIS" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="briProtocol" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XBriProtocol in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="calledPlan" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="calledPri" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callerIDDN" type="axlapi:XDirectoryNumber" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingPartySelection" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingPlan" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="callingPri" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="chanIE" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="clockReference" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XClockReference in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="csuParam" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XCSUParam in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="dChannelEnable" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="direction" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="displayIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="encode" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XEncode in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="fdlChannel" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XFDLChannel in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>This field has been deprecated for SeaDragon.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="firstDelay" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="framing" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XFraming in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="intraDelay" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="numberIE" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="numDigits" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable. The value of numDigits must be either 0 to 32 or 99.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="prefix" type="xsd:string" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="presentationBit" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sendRestart" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="setupNonISDNPI" type="xsd:boolean" nillable="false" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sigDigits" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>This tag enables the significant digits for the gateway; if the tag is set to true, the value of the 'numDigits' element is used as Significant Digits for the gateway. This tag should have a value of false if numDigits i...
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="stableIn4" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="statusPoll" type="xsd:boolean" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="stripCountOut" type="xsd:nonNegativeInteger" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkPadRx" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkPadTx" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XTrunkPad in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="trunkLevel" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XTrunkLevel in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="yellowAlarm" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XYellowAlarm in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="zeroSuppression" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XZeroSuppression in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="t1">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="trunkSelectionOrder" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XTrunkSelectionOrder in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="clockReference" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XClockReference in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="csuParam" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XCSUParam in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="digitSending" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XDigitSending in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="encode" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XEncode in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="fdlChannel" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XFDLChannel in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>This field has been deprecated for SeaDragon.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="ports" type="axlapi:XT1PortList" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>If the ports element is included in the request, then all existing ports on this gateway will be replaced by the ports found here.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="yellowAlarm" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XYellowAlarm in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="zeroSuppression" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XZeroSuppression in AXLEnums.xsd-->
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="sMDIBasePort" type="xsd:positiveInteger" nillable="false" minOccurs="0">
										<xsd:annotation>
											<xsd:documentation>Not nullable.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="handleDTMFPrecedenceSignals" type="xsd:boolean" minOccurs="0"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cdpnTransformationCSS" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="enableProtectedFacilityIE" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for DigitalAccess PRI Gateways</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only uuid attribute is read by AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName" type="axlapi:String100"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not applicable for FXS ports</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter"/>
						<xsd:element name="geoLocationFilterName" type="axlapi:String100"/>
					</xsd:choice>
					<xsd:element name="sendGeoLocation" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="v150" type="xsd:boolean" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformNationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformInternationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformSubscriberCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateGatewayEndpoint" type="axlapi:UpdateGatewayEndpointReq"/>
	<xsd:element name="updateGatewayEndpointResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getGatewayEndpoint" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetGatewayEndpointRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Gateway specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" type="axlapi:XGateway"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGatewayEndpointResponse" type="axlapi:GetGatewayEndpointRes"/>
	<xsd:element name="removeGatewayEndpoint" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeGatewayEndpointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRouteFilterReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new Route Filter to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="routeFilter" type="axlapi:XRouteFilter" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRouteFilter" type="axlapi:AddRouteFilterReq"/>
	<xsd:element name="addRouteFilterResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRouteFilterReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing Route Filter in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="dialPlanId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Dial Plan for this Route Filter. Not Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="dialPlanName" type="xsd:Name">
							<xsd:annotation>
								<xsd:documentation>The name of the new Dial Plan for this Route Filter.  Not Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of this Route Filter.  If this element is null, then all members are removed from this route filter.  Note:  If the "members" element is present, then all existing members are removed and replaced with the "m...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XRouteFilterMember" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRouteFilter" type="axlapi:UpdateRouteFilterReq"/>
	<xsd:element name="updateRouteFilterResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getRouteFilter" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetRouteFilterRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Route Filter specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routeFilter" type="axlapi:XRouteFilter"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRouteFilterResponse" type="axlapi:GetRouteFilterRes"/>
	<xsd:element name="removeRouteFilter" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeRouteFilterResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetServiceParameterReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified service parameter from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The pkid of the service parameter in the ProcessConfig table.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:sequence>
							<xsd:element name="name" type="axlapi:String50">
								<xsd:annotation>
									<xsd:documentation>Name of the service parameter. Not nullable.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
							<xsd:choice>
								<xsd:annotation>
									<xsd:documentation>The process Node that this the service parameter belongs to. Not nullable.</xsd:documentation>
								</xsd:annotation>
								<xsd:element name="processNodeId" type="axlapi:XUUID"/>
								<xsd:element name="processNodeName" type="axlapi:String50"/>
							</xsd:choice>
							<xsd:element name="service" type="xsd:string"><!--This field is of the type axl:XService in AXLEnums.xsd-->
								<xsd:annotation>
									<xsd:documentation>The service that this service parameter belongs to.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:sequence>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getServiceParameter" type="axlapi:GetServiceParameterReq"/>
	<xsd:complexType name="GetServiceParameterRes">
		<xsd:annotation>
			<xsd:documentation>Contains the service parameter specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="serviceParameter" type="axlapi:XProcessConfig"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getServiceParameterResponse" type="axlapi:GetServiceParameterRes"/>
	<xsd:complexType name="UpdateServiceParameterReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing service parameter's value.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetServiceParameterReq">
				<xsd:sequence>
					<xsd:element name="newValue" type="axlapi:String1024" nillable="true">
						<xsd:annotation>
							<xsd:documentation>The new value of the service parameter. Nullable in some cases.  Must be a valid value for this service parameter's data type or an error will be returned.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateServiceParameter" type="axlapi:UpdateServiceParameterReq"/>
	<xsd:element name="updateServiceParameterResponse" type="axlapi:StandardResponse">
		<xsd:annotation>
			<xsd:documentation>Would return either the GUID of the object that was altered, or return true if the operation was successful.  Whichever is possible for this request.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="AddLocationReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new Location to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="location" type="axlapi:XLocation" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addLocation" type="axlapi:AddLocationReq"/>
	<xsd:element name="addLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateLocationReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing Location in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="kbits" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="videoKbits" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="relatedLocations" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="relatedLocation" type="axlapi:XLocationRelationship" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateLocation" type="axlapi:UpdateLocationReq"/>
	<xsd:element name="updateLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getLocation" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetLocationRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Location specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="location" type="axlapi:XLocation"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getLocationResponse" type="axlapi:GetLocationRes"/>
	<xsd:element name="removeLocation" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCMCInfoReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new CMCInfo to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="cmcInfo" type="axlapi:XCMCInfo" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCMCInfo" type="axlapi:AddCMCInfoReq"/>
	<xsd:element name="addCMCInfoResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCMCInfoReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing CMCInfo in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="code" type="axlapi:String16">
							<xsd:annotation>
								<xsd:documentation>The code of the CMCInfo that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the CMCInfo that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newCode" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String16" nillable="true" minOccurs="0"/>
					<xsd:element name="authorizationLevel" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag has been deprecated</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCMCInfo" type="axlapi:UpdateCMCInfoReq"/>
	<xsd:element name="updateCMCInfoResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="CMCInfoReq" final="#all">
		<xsd:annotation>
			<xsd:documentation>Access the specified CMCInfo from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the CMCInfo to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="code" type="axlapi:String16" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The code of the CMCInfo to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCMCInfo" type="axlapi:CMCInfoReq"/>
	<xsd:complexType name="GetCMCInfoRes">
		<xsd:annotation>
			<xsd:documentation>Contains the CMCInfo specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="cmcInfo" type="axlapi:XCMCInfo"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCMCInfoResponse" type="axlapi:GetCMCInfoRes"/>
	<xsd:element name="removeCMCInfo" type="axlapi:CMCInfoReq"/>
	<xsd:element name="removeCMCInfoResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddFACInfoReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new FACInfo to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="facInfo" type="axlapi:XFACInfo" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addFACInfo" type="axlapi:AddFACInfoReq"/>
	<xsd:element name="addFACInfoResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateFACInfoReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing FACInfo in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="code" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="authorizationLevel" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateFACInfo" type="axlapi:UpdateFACInfoReq"/>
	<xsd:element name="updateFACInfoResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getFACInfo" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetFACInfoRes">
		<xsd:annotation>
			<xsd:documentation>Contains the FACInfo specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="facInfo" type="axlapi:XFACInfo"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getFACInfoResponse" type="axlapi:GetFACInfoRes"/>
	<xsd:element name="removeFACInfo" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeFACInfoResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRegionReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new Region to the database and automatically adds associated regions to the Region Matrix table.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="region">
						<xsd:complexType>
							<xsd:complexContent>
								<xsd:extension base="axlapi:XRegion">
									<xsd:sequence minOccurs="0">
										<xsd:element name="defaultCodec" type="xsd:string" default="G.711" nillable="false" minOccurs="0"/><!--This field is of the type axl:XBandwidth in AXLEnums.xsd-->
									</xsd:sequence>
								</xsd:extension>
							</xsd:complexContent>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRegion" type="axlapi:AddRegionReq"/>
	<xsd:element name="addRegionResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRegionReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing region in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String50">
							<xsd:annotation>
								<xsd:documentation>The name of the Region to update. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The UUID of the Region to update. Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Region. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="relatedRegions" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="relatedRegion" type="axlapi:XRegionRelationship" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRegion" type="axlapi:UpdateRegionReq"/>
	<xsd:element name="updateRegionResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeRegion" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeRegionResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getRegion" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetRegionRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Region specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="region" type="axlapi:XRegion"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRegionResponse" type="axlapi:GetRegionRes"/>
	<xsd:complexType name="UpdateRegionMatrixReq">
		<xsd:annotation>
			<xsd:documentation>Updates a specific entry in the RegionMatrix table.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="uuid" type="axlapi:XUUID">
						<xsd:annotation>
							<xsd:documentation>The pkid of the entry in the RegionMatrix table that is to be modified.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="bandwidth" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XBandwidth in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The new bandwidth value for this particular region relationship.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="videoBandwidth" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="lossyNetwork" type="axlapi:XLossyNetwork" nillable="true" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRegionMatrix" type="axlapi:UpdateRegionMatrixReq"/>
	<xsd:element name="updateRegionMatrixResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMGCPReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds one new MGCP to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newMGCP" type="axlapi:XMGCP"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMGCP" type="axlapi:AddMGCPReq"/>
	<xsd:element name="addMGCPResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMGCPUnitReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds one new MGCP Unit to the MGCP Gateway.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The pkid of the MGCP gateway for which the unit is being added</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="domainName" type="axlapi:String64">
							<xsd:annotation>
								<xsd:documentation>the domain name of MGCP Gateway for which the unit is being added</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="unit" type="axlapi:XMGCPUnit"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMGCPUnit" type="axlapi:AddMGCPUnitReq"/>
	<xsd:element name="addMGCPUnitResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMGCPSubunitReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds one new MGCP Subunit to the MGCP Gateway's unit(slot).</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The pkid of the MGCP gateway for which the subunit is being added</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="domainName" type="axlapi:String64">
							<xsd:annotation>
								<xsd:documentation>The domain name of MGCP Gateway for which the subunit is being added</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="unit">
						<xsd:annotation>
							<xsd:documentation>The unit(slot) index for which the subunit is being added</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="subunit" type="axlapi:XMGCPSubunit"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMGCPSubunit" type="axlapi:AddMGCPSubunitReq"/>
	<xsd:element name="addMGCPSubunitResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMGCPEndpointReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds one and only one new MGCP Endpoint(port) to the MGCP Gateway's subunit.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The pkid of the MGCP gateway for which the endpoint is being added</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="domainName" type="axlapi:String64">
							<xsd:annotation>
								<xsd:documentation>The domain name of MGCP Gateway for which the endpoint is being added</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="unit">
						<xsd:annotation>
							<xsd:documentation>The unit(slot) index for which the endpoint is being added</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="subunit">
						<xsd:annotation>
							<xsd:documentation>The subunit index for which the endpoint is being added</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="endpoint">
						<xsd:complexType>
							<xsd:complexContent>
								<xsd:extension base="axlapi:XMGCPEndpoint">
									<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
								</xsd:extension>
							</xsd:complexContent>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMGCPEndpoint" type="axlapi:AddMGCPEndpointReq"/>
	<xsd:element name="addMGCPEndpointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetMGCPReq" final="#all">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified MGCP gateway info from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the MGCP Gateway to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="domainName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The domain name of the MGCP to be retrieved.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMGCP" type="axlapi:GetMGCPReq"/>
	<xsd:complexType name="GetMGCPRes">
		<xsd:annotation>
			<xsd:documentation>Returns the MGCP specified by the GetMGCP request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mgcp" type="axlapi:XMGCP"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMGCPResponse" type="axlapi:GetMGCPRes"/>
	<xsd:complexType name="RemoveMGCPReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified MGCP Gateway from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the MGCP to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="domainName" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The domain name of the MGCP to be removed.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeMGCP" type="axlapi:RemoveMGCPReq"/>
	<xsd:element name="removeMGCPResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveMGCPUnitReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified unit(slot) of MGCP Gateway from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the MGCP whose unit is to be removed.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="domainName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The domain name of the MGCP whose unit is to be removed.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="unit" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The unit or slot number to be removed from the MGCP gateway(specified as the attribute index)</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeMGCPUnit" type="axlapi:RemoveMGCPUnitReq"/>
	<xsd:element name="removeMGCPUnitResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveMGCPSubunitReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified subunit of MGCP Gateway's unit from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the MGCP whose unit's subunit is to be removed.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="domainName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The domain name of the MGCP whose subunit is to be removed.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="unit" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The unit number from which the subunit is to be removed from the MGCP gateway(specified as the attribute "index")</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="subunit" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The subunit to be removed from the MGCP gateway(specified as the attribute "index")</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeMGCPSubunit" type="axlapi:RemoveMGCPSubunitReq"/>
	<xsd:element name="removeMGCPSubunitResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveMGCPEndpointReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified endpoint(port) of MGCP Gateway from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the MGCP whose endpoint is to be removed.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="domainName" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The domain name of the MGCP whose endpoint is to be removed.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="unit" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The unit(slot) number from which the endpoint is to be removed(specified as the attribute "index")</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="subunit" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The subunit from which the endpoint(port) is to be removed (specified as the attribute "index")</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="endpoint" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The endpoint(port) number to be removed (specified as the attribute "index")</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:attribute name="index" type="xsd:nonNegativeInteger" use="required"/>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeMGCPEndpoint" type="axlapi:RemoveMGCPEndpointReq"/>
	<xsd:element name="removeMGCPEndpointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMGCPReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing MGCP Gateway information in the database.
To modify unit, use removeMGCPUnit-addMGCPUnit.
To modify subunit, use removeMGCPSubunit-addMGCPSubunit
To modify endpoint, use removeMGCPEndpoint-addMGCPEndpoint</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="domainName" type="axlapi:String64">
							<xsd:annotation>
								<xsd:documentation>The domain name of the MGCP that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the MGCP that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newDomainName" type="axlapi:String64" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new domain name of the MGCP.  Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String100" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the MGCP.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="product" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Read only</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="model" type="xsd:string" minOccurs="0"><!--This field is of the type axl:XModel in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Read only</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callManagerGroup" type="axlapi:XCallManagerGroup" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Call Manager Group for this MGCP.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callManagerGroupName" type="axlapi:String50" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The name of the new Call  Manager Group name for this MGCP. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="scratch" type="axlapi:Name50" minOccurs="0"/>
					<xsd:element name="vendorConfig" type="axlapi:XVendorConfig" minOccurs="0"/>
					<xsd:element name="versionStamp" type="axlapi:String128" minOccurs="0"/>
					<xsd:element name="loadInformation" type="axlapi:XLoadInformation" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new load information for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateMGCP" type="axlapi:UpdateMGCPReq"/>
	<xsd:element name="updateMGCPResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCallManagerReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new CallManager to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="callManager" type="axlapi:XCallManager" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addCallManager" type="axlapi:AddCallManagerReq"/>
	<xsd:element name="addCallManagerResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCallManagerReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing CallManager in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="autoRegistration" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Auto-registration information block.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="startDN" type="axlapi:XDirectoryNumber" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Nullable.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="endDN" type="axlapi:XDirectoryNumber" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Nullable.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="nextDN" type="axlapi:XDirectoryNumber" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Nullable.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:choice minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Nullable.</xsd:documentation>
									</xsd:annotation>
									<xsd:element name="routePartitionId" type="axlapi:XUUID"/>
									<xsd:element name="routePartitionName" type="axlapi:String50"/>
								</xsd:choice>
								<xsd:element name="e164Mask" type="axlapi:String50" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Nullable.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ports" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Port information block.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="ethernetPhonePort" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Not nullable.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="mgcpPorts" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>MGCP port information block.</xsd:documentation>
									</xsd:annotation>
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="listen" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
												<xsd:annotation>
													<xsd:documentation>Not nullable.</xsd:documentation>
												</xsd:annotation>
											</xsd:element>
											<xsd:element name="keepAlive" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
												<xsd:annotation>
													<xsd:documentation>Not nullable.</xsd:documentation>
												</xsd:annotation>
											</xsd:element>
										</xsd:sequence>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCallManager" type="axlapi:UpdateCallManagerReq"/>
	<xsd:element name="updateCallManagerResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getCallManager" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetCallManagerRes">
		<xsd:annotation>
			<xsd:documentation>Contains the CallManager specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="callManager" type="axlapi:XCallManager"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCallManagerResponse" type="axlapi:GetCallManagerRes"/>
	<xsd:element name="removeCallManager" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeCallManagerResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getMobileSmartClientProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetMobileSmartClientProfileRes">
		<xsd:annotation>
			<xsd:documentation>Contains the MobileSmartClientProfile specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mobileSmartClientProfile" type="axlapi:XMobileSmartClientProfile"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMobileSmartClientProfileResponse" type="axlapi:GetMobileSmartClientProfileRes"/>
	<xsd:complexType name="AddProcessNodeReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new ProcessNode to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="processNode" type="axlapi:XProcessNode" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addProcessNode" type="axlapi:AddProcessNodeReq"/>
	<xsd:element name="addProcessNodeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateProcessNodeReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing ProcessNode in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:Name255" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mac" type="axlapi:XMacAddress" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="IPv6Name" type="xsd:string" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateProcessNode" type="axlapi:UpdateProcessNodeReq"/>
	<xsd:element name="updateProcessNodeResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getProcessNode" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetProcessNodeRes">
		<xsd:annotation>
			<xsd:documentation>Contains the ProcessNode specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="processNode" type="axlapi:XProcessNode"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getProcessNodeResponse" type="axlapi:GetProcessNodeRes"/>
	<xsd:element name="removeProcessNode" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeProcessNodeResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="ListAllProcessNodesReq">
		<xsd:annotation>
			<xsd:documentation>Sends a request for all ProcessNodes in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listAllProcessNodes" type="axlapi:ListAllProcessNodesReq"/>
	<xsd:complexType name="ListAllProcessNodesRes">
		<xsd:annotation>
			<xsd:documentation>Contains all the process nodes in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="processNode" type="axlapi:XProcessNode" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listAllProcessNodesResponse" type="axlapi:ListAllProcessNodesRes"/>
	<xsd:complexType name="ListProcessNodesByServiceReq">
		<xsd:annotation>
			<xsd:documentation>Sends a request for all ProcessNodes in the database for this particular service.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="service" type="xsd:string"/><!--This field is of the type axl:XService in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listProcessNodesByService" type="axlapi:ListProcessNodesByServiceReq"/>
	<xsd:complexType name="ListProcessNodesByServiceRes">
		<xsd:annotation>
			<xsd:documentation>Contains all the process nodes in the database that matched the service type in the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="processNode" type="axlapi:XProcessNode" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listProcessNodesByServiceResponse" type="axlapi:ListProcessNodesByServiceRes"/>
	<xsd:complexType name="GetProcessNodeServiceReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Process Node Service from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The pkid of the Process Node Service you wish to retrieve.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:sequence>
							<xsd:choice>
								<xsd:annotation>
									<xsd:documentation>The process Node that this the process node service belongs to. Not nullable.</xsd:documentation>
								</xsd:annotation>
								<xsd:element name="processNodeId" type="axlapi:XUUID"/>
								<xsd:element name="processNodeName" type="axlapi:String50"/>
							</xsd:choice>
							<xsd:element name="service" type="xsd:string"><!--This field is of the type axl:XService in AXLEnums.xsd-->
								<xsd:annotation>
									<xsd:documentation>The service that this process node service belongs to.</xsd:documentation>
								</xsd:annotation>
							</xsd:element>
						</xsd:sequence>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getProcessNodeService" type="axlapi:GetProcessNodeServiceReq"/>
	<xsd:complexType name="GetProcessNodeServiceRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Process Node Service specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="processNodeService" type="axlapi:XProcessNodeService"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getProcessNodeServiceResponse" type="axlapi:GetProcessNodeServiceRes"/>
	<xsd:complexType name="UpdateProcessNodeServiceReq">
		<xsd:annotation>
			<xsd:documentation>Modifies an existing Process Node Service's value.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetProcessNodeServiceReq">
				<xsd:sequence>
					<xsd:element name="fileName" type="axlapi:String255" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="traceLevel" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="userCategories" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="enable" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="numFiles" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="numLines" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="numMinutes" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="includeNonDeviceTraces" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="useXML" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="serverName" type="axlapi:String255" nillable="true" minOccurs="0"/>
					<xsd:element name="deviceNameMonitorFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="deviceTypeMonitorFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="fileTraceFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="outputDebugStringFlag" type="xsd:boolean" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateProcessNodeService" type="axlapi:UpdateProcessNodeServiceReq"/>
	<xsd:element name="updateProcessNodeServiceResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="listRoutePartitionByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Route Partitions whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListRoutePartitionRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listRoutePartitionByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="routePartition" type="axlapi:XRoutePartition" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listRoutePartitionByNameResponse" type="axlapi:ListRoutePartitionRes">
		<xsd:annotation>
			<xsd:documentation>The response to listRoutePartitionsByName. Contains all the Route Partitions that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="listDevicePoolByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Device Pools whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListDevicePoolRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listDevicePoolByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="devicePool" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String50"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listDevicePoolByNameResponse" type="axlapi:ListDevicePoolRes">
		<xsd:annotation>
			<xsd:documentation>The response to listDevicePoolsByName. Contains all the Device Pools that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="listPhoneTemplateByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Phone Templates whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListPhoneTemplateRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listPhoneTemplateByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="phoneTemplate" minOccurs="0" maxOccurs="unbounded">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="name" type="axlapi:String50"/>
									<xsd:element name="model" type="xsd:string"/><!--This field is of the type axl:XModel in AXLEnums.xsd-->
									<xsd:element name="protocol" type="xsd:string"/><!--This field is of the type axl:XDeviceProtocol in AXLEnums.xsd-->
								</xsd:sequence>
								<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listPhoneTemplateByNameResponse" type="axlapi:ListPhoneTemplateRes">
		<xsd:annotation>
			<xsd:documentation>The response to listPhoneTemplatesByName. Contains all the Phone Templates that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListDeviceByNameAndClassReq">
		<xsd:annotation>
			<xsd:documentation>This method searches for all devices of the specified device class and whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListBySearchString">
				<xsd:sequence>
					<xsd:element name="class" type="xsd:string"/><!--This field is of the type axl:XClass in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listDeviceByNameAndClass" type="axlapi:ListDeviceByNameAndClassReq"/>
	<xsd:complexType name="ListDeviceRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listDeviceByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String50"/>
											<xsd:element name="product" type="xsd:string"/><!--This field is of the type axl:XProduct in AXLEnums.xsd-->
											<xsd:element name="model" type="xsd:string"/><!--This field is of the type axl:XModel in AXLEnums.xsd-->
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listDeviceByNameAndClassResponse" type="axlapi:ListDeviceRes">
		<xsd:annotation>
			<xsd:documentation>The response to listDeviceByNameAndClass. Contains all the device that matched the search string and class type.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListDeviceByServiceNameReq">
		<xsd:annotation>
			<xsd:documentation>This method searches for all devices which are subscribed to the specified telecaster service.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:ListBySearchString">
				<xsd:sequence>
					<xsd:element name="serviceName" type="xsd:string"/><!--This field is of the type axl:XClass in AXLEnums.xsd-->
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listDeviceByServiceName" type="axlapi:ListDeviceByNameAndClassReq"/>
	<xsd:complexType name="ListDeviceByServiceNameRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listDeviceByServiceName methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="device" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String50"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listDeviceByServiceNameResponse" type="axlapi:ListDeviceByServiceNameRes">
		<xsd:annotation>
			<xsd:documentation>The response to listDeviceByServiceName. Contains all the device that matched the ServiceName.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="listMOHAudioSourceByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all MOH Audio Sources whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListMOHAudioSourceRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listMOHAudioSourceByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mohAudioSource" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="sourceId" type="axlapi:XMOHAudioSourceId"/>
											<xsd:element name="name" type="axlapi:String50"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listMOHAudioSourceByNameResponse" type="axlapi:ListMOHAudioSourceRes">
		<xsd:annotation>
			<xsd:documentation>The response to listMOHAudioSourcesByName. Contains all the MOH Audio Sources that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="GetMOHAudioSourceByIDAndSourceReq">
		<xsd:annotation>
			<xsd:documentation>Specifies which MOH Audio Source to retrieve.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					<xsd:element name="sourceId" type="axlapi:XMOHAudioSourceId" nillable="false"/>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="UpdateMOHAudioSourceReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:GetMOHAudioSourceByIDAndSourceReq">
				<xsd:sequence>
					<xsd:element name="name" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="sourceFile" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="multicast" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="repeat" type="xsd:boolean" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateMOHAudioSource" type="axlapi:UpdateMOHAudioSourceReq">
		<xsd:annotation>
			<xsd:documentation>Specifies which MOH Audio Source to modify.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="updateMOHAudioSourceResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getMOHAudioSource" type="axlapi:GetMOHAudioSourceByIDAndSourceReq">
		<xsd:annotation>
			<xsd:documentation>Specifies which MOH Audio Source to retrieve.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="GetMOHAudioSourceRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mohAudioSource" type="axlapi:XMOHAudioSource"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMOHAudioSourceResponse" type="axlapi:GetMOHAudioSourceRes"/>
	<xsd:element name="removeMOHAudioSource" type="axlapi:GetMOHAudioSourceByIDAndSourceReq">
		<xsd:annotation>
			<xsd:documentation>Specifies which MOH Audio Source to remove.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="removeMOHAudioSourceResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="listMediaResourceListByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Media Resource Lists whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListMediaResourceListRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listMediaResourceListByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mediaResourceList" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String50"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listMediaResourceListByNameResponse" type="axlapi:ListMediaResourceListRes">
		<xsd:annotation>
			<xsd:documentation>The response to listMediaResourceListsByName. Contains all the Media Resource Lists that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="AddMediaResourceListReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="mediaResourceList" type="axlapi:XMediaResourceList"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMediaResourceList" type="axlapi:AddMediaResourceListReq"/>
	<xsd:element name="addMediaResourceListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getMediaResourceList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetMediaResourceListRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mediaResourceList" type="axlapi:XMediaResourceList"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMediaResourceListResponse" type="axlapi:GetMediaResourceListRes"/>
	<xsd:element name="removeMediaResourceList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeMediaResourceListResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMediaResourceListReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					<xsd:element name="members" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XMediaResourceListMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateMediaResourceList" type="axlapi:UpdateMediaResourceListReq"/>
	<xsd:element name="updateMediaResourceListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="listMediaResourceGroupByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Media Resource Groups whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListMediaResourceGroupRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listMediaResourceGroupByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mediaResourceGroup" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String50"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listMediaResourceGroupByNameResponse" type="axlapi:ListMediaResourceGroupRes">
		<xsd:annotation>
			<xsd:documentation>The response to listMediaResourceGroupsByName. Contains all the Media Resource Groups that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="AddMediaResourceGroupReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="mediaResourceGroup" type="axlapi:XMediaResourceGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMediaResourceGroup" type="axlapi:AddMediaResourceGroupReq"/>
	<xsd:element name="addMediaResourceGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getMediaResourceGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetMediaResourceGroupRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mediaResourceGroup" type="axlapi:XMediaResourceGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMediaResourceGroupResponse" type="axlapi:GetMediaResourceGroupRes"/>
	<xsd:element name="removeMediaResourceGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeMediaResourceGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMediaResourceGroupReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="multicast" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="member" type="axlapi:XMediaResourceGroupMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateMediaResourceGroup" type="axlapi:UpdateMediaResourceGroupReq"/>
	<xsd:element name="updateMediaResourceGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddUserGroupReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userGroup" type="axlapi:XUserGroup"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addUserGroup" type="axlapi:AddUserGroupReq"/>
	<xsd:element name="addUserGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getUserGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetUserGroupRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="userGroup" type="axlapi:XUserGroup"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getUserGroupResponse" type="axlapi:GetUserGroupRes"/>
	<xsd:element name="removeUserGroup" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeUserGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateUserGroupReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String128" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="members" nillable="true" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>The new members of this User Group. If this element is null, then all members are removed from this user group. Note: If the "members" element is present, then all existing members are removed and replaced with the "member"...
							</xsd:annotation>
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
						<xsd:sequence minOccurs="0">
							<xsd:element name="addMembers" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>Add new members to the User Group. It doesn't delete old members. Note: If the member is already added to the User Group an error will be thrown.</xsd:documentation>
								</xsd:annotation>
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
							<xsd:element name="removeMembers" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>Remove members from the UserGroup. Note: Only members already associated with this User Group can be deleted.</xsd:documentation>
								</xsd:annotation>
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateUserGroup" type="axlapi:UpdateUserGroupReq"/>
	<xsd:element name="updateUserGroupResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="listLocationByName" type="axlapi:ListBySearchString"/>
	<xsd:complexType name="ListLocationRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="location" type="axlapi:XLocation" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listLocationByNameResponse" type="axlapi:ListLocationRes"/>
	<xsd:element name="listAARGroupByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>List all AAR Groups that match the specified name pattern.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListAARGroupRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="aarGroup" type="axlapi:XAARNeighborhood" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listAARGroupByNameResponse" type="axlapi:ListAARGroupRes">
		<xsd:annotation>
			<xsd:documentation>The response to listAARGroupByName. Contains all the AAR Groups that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="listVoiceMailProfileByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>List all Voice Mail Profiles that match the specified name pattern.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListVoiceMailProfileRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="voiceMailProfile" type="axlapi:XVoiceMailProfile" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listVoiceMailProfileByNameResponse" type="axlapi:ListVoiceMailProfileRes">
		<xsd:annotation>
			<xsd:documentation>The response to listVoiceMailProfileByName. Contains all the Voice Maile Profiles that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="listGatekeeperByName" type="axlapi:ListBySearchString">
		<xsd:annotation>
			<xsd:documentation>This method searches for all Gatekeepers whose name matches the specified search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ListGatekeeperRes">
		<xsd:annotation>
			<xsd:documentation>This response is returned by the listGatekeeperByXXX methods.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="gatekeeper" minOccurs="0" maxOccurs="unbounded">
									<xsd:complexType>
										<xsd:sequence>
											<xsd:element name="name" type="axlapi:String128"/>
										</xsd:sequence>
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="required"/>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="listGatekeeperByNameResponse" type="axlapi:ListGatekeeperRes">
		<xsd:annotation>
			<xsd:documentation>The response to listGatekeepersByName. Contains all the Gatekeepers that matched the search string.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="AddGatekeeperReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="gatekeeper" type="axlapi:XGatekeeper"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addGatekeeper" type="axlapi:AddGatekeeperReq"/>
	<xsd:element name="addGatekeeperResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getGatekeeper" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetGatekeeperRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="gatekeeper" type="axlapi:XGatekeeper"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGatekeeperResponse" type="axlapi:GetGatekeeperRes"/>
	<xsd:element name="removeGatekeeper" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeGatekeeperResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateGatekeeperReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="rrqTimeToLive" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="retryTimeout" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="enableDevice" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateGatekeeper" type="axlapi:UpdateGatekeeperReq"/>
	<xsd:element name="updateGatekeeperResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddH323PhoneReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="phone" type="axlapi:XH323Phone"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addH323Phone" type="axlapi:AddH323PhoneReq"/>
	<xsd:element name="addH323PhoneResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddH323GatewayReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="gateway" type="axlapi:XH323Gateway"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addH323Gateway" type="axlapi:AddH323GatewayReq"/>
	<xsd:element name="addH323GatewayResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddH323TrunkReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="trunk" type="axlapi:XH323Trunk"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addH323Trunk" type="axlapi:AddH323TrunkReq"/>
	<xsd:element name="addH323TrunkResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getH323Phone" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetH323PhoneRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="phone" type="axlapi:XH323Phone"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getH323PhoneResponse" type="axlapi:GetH323PhoneRes"/>
	<xsd:element name="getH323Gateway" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetH323GatewayRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="gateway" type="axlapi:XH323Gateway"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getH323GatewayResponse" type="axlapi:GetH323GatewayRes"/>
	<xsd:element name="getH323Trunk" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetH323TrunkRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="trunk" type="axlapi:XH323Trunk"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getH323TrunkResponse" type="axlapi:GetH323TrunkRes"/>
	<xsd:element name="removeH323Phone" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeH323PhoneResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeH323Gateway" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeH323GatewayResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeH323Trunk" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeH323TrunkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateH323DeviceReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence minOccurs="0">
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String128" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false" minOccurs="0"/>
						<xsd:element name="devicePoolName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="networkLocation" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The new Device Destination flag for Trunk to Trunk Transfer and Drop Conference Feature is required for H323 Gateways and Trunks.  Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="locationName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mediaResourceListId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="mediaResourceListName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable. This tag is not valid for H323Phone and H323Trunk.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable. This tag is not valid for H323Phone and H323Trunk.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="retryVideoCallAsAudio" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="packetCaptureMode" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XPacketCaptureMode in AXLEnums.xsd-->
					<xsd:element name="packetCaptureDuration" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="srtpAllowed" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="unattendedPort" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Phones and H323Trunks.Not applicable for H323Gateways.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName" type="axlapi:String100"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323 trunks and H323 gateways</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationFilterName" type="axlapi:String100"/>
					</xsd:choice>
					<xsd:element name="sendGeoLocation" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323 trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateway and H323Trunk.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="cdpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateway and H323Trunk.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="waitForFarEndH245TerminalSet" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="mtpRequired" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="mtpPreferredCodec" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XSIPCodec in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323 Phones.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callerIdDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="callingPartySelection" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
					<xsd:element name="callingLineIdPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="displayIEDelivery" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="redirectOutboundNumberIE" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="redirectInboundNumberIE" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="enableInboundFaststart" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="enableOutboundFaststart" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If set to True, mediaResourceList must be mentioned and mtpRequired must be set to True.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="codecForOutboundFaststart" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XMediaPayload in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>enableOutboundFaststart must be set to true for it to be read. Not Nillable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="UpdateH323PhoneReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateH323DeviceReq">
				<xsd:sequence minOccurs="0">
					<xsd:element name="hlogStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="subscribeCallingSearchSpaceId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="ownerUserId" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="signalingPort" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="gatekeeperInfo" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:choice minOccurs="0">
									<xsd:element name="gatekeeperId" type="axlapi:XUUID" nillable="false" minOccurs="0"/>
									<xsd:element name="gatekeeperName" type="axlapi:String50" nillable="false" minOccurs="0"/>
								</xsd:choice>
								<xsd:element name="e164" type="axlapi:String50" nillable="false" minOccurs="0"/>
								<xsd:element name="technologyPrefix" type="axlapi:String50" minOccurs="0"/>
								<xsd:element name="zone" type="axlapi:String50" minOccurs="0"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="lines" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new lines for this phone.  If this element is null, then all lines are removed from this phone.  Note:  If the lines element is present, then all existing lines are removed and replaced with the sub-elements described by...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="line" type="axlapi:XLine" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Ignore Presentation Indicators flag for Hospitality Feature is required for most phones and device profiles.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateH323Phone" type="axlapi:UpdateH323PhoneReq"/>
	<xsd:element name="updateH323PhoneResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateH323GatewayReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateH323DeviceReq">
				<xsd:sequence minOccurs="0">
					<xsd:element name="AllowH235PassThrough" type="xsd:boolean" default="false" minOccurs="0"/>
					<xsd:element name="tunneledProtocol" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XTunneledProtocol in AXLEnums.xsd-->
					<xsd:element name="ASN1ROSEOIDEncoding" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="QSIGVariant" type="axlapi:String50" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable for only if PRI variant is QSIG</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="nationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="internationalPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="subscriberPrefix" type="axlapi:String16" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for H323Gateways/Trunks</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="significantDigits" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The value of significantDigits  must be either from 0 to 32 or 99. Here 99 means All.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:extension base="xsd:nonNegativeInteger"/>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="prefixDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="calledPartyIENumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="callingPartyIENumberType" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPriOfNumber in AXLEnums.xsd-->
					<xsd:element name="calledNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="callingNumberingPlan" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNumberingPlan in AXLEnums.xsd-->
					<xsd:element name="licensedCapacity" type="xsd:nonNegativeInteger" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The tag will not be applicable for any type of Inter-Cluster trunk</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationNationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationNationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationInternationalCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationInternationalCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationSubscriberCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationSubscriberCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="nationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="internationalStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="subscriberStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformNationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformInternationalCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformSubscriberCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateH323Gateway" type="axlapi:UpdateH323GatewayReq"/>
	<xsd:element name="updateH323GatewayResponse" type="axlapi:StandardResponse" nillable="false"/>
	<xsd:complexType name="UpdateH323TrunkReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:UpdateH323GatewayReq">
				<xsd:sequence minOccurs="0">
					<xsd:element name="pathReplacementSupport" type="xsd:boolean" default="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="gatekeeperInfo" minOccurs="0">
							<xsd:complexType>
								<xsd:sequence minOccurs="0">
									<xsd:choice minOccurs="0">
										<xsd:element name="gatekeeperId" type="axlapi:XUUID" nillable="false" minOccurs="0"/>
										<xsd:element name="gatekeeperName" type="axlapi:String50" nillable="false" minOccurs="0"/>
									</xsd:choice>
									<xsd:element name="terminal" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTerminal in AXLEnums.xsd-->
									<xsd:element name="technologyPrefix" type="axlapi:String50" minOccurs="0"/>
									<xsd:element name="zone" type="axlapi:String50" minOccurs="0"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
						<xsd:element name="remoteServerInfo" minOccurs="0">
							<xsd:complexType>
								<xsd:sequence minOccurs="0">
									<xsd:element name="server1" type="axlapi:String255" nillable="false" minOccurs="0"/>
									<xsd:element name="server2" type="axlapi:String255" minOccurs="0"/>
									<xsd:element name="server3" type="axlapi:String255" minOccurs="0"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:choice>
					<xsd:sequence minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Applicable only for Non-Gatekeeper controlled ICT trunk's.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="ictPassingPrecedenceLevelThroughUUIE" type="xsd:boolean" nillable="false" minOccurs="0"/>
						<xsd:element name="ictSecurityAccessLevel" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Should be set only when ictPassingPrecedenceLevelThroughUUIE is set to true.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:sequence>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateH323Trunk" type="axlapi:UpdateH323TrunkReq" nillable="false"/>
	<xsd:element name="updateH323TrunkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="ExecuteSQLQueryReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="sql" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>WARNING:  SQL Large Text and BLOB columns cannot be fetched along with other columns.  A Large Text or BLOB column must be selected in its own SQL query.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddSIPTrunkReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="trunk" type="axlapi:XSIPTrunk"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addSIPTrunk" type="axlapi:AddSIPTrunkReq"/>
	<xsd:element name="addSIPTrunkResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getSIPTrunk" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetSIPTrunkBase">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="trunk" type="axlapi:XSIPTrunk"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPTrunkResponse" type="axlapi:GetSIPTrunkBase"/>
	<xsd:element name="removeSIPTrunk" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeSIPTrunkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateSIPTrunkReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence minOccurs="0">
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String128" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID" nillable="false" minOccurs="0"/>
						<xsd:element name="devicePoolName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="commonDeviceConfigId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="commonDeviceConfigName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Common Device Config for this device. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="networkLocation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XNetworkLocation in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="locationId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="locationName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mediaResourceListId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="mediaResourceListName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable. This tag is not valid for SIPTrunk.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable. This tag is not valid for SIPTrunk.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="automatedAlternateRoutingCSSId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="automatedAlternateRoutingCSSName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="aarNeighborhoodId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="aarNeighborhoodName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:element name="mlppDomainId" type="xsd:int" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="mlppIndicationStatus" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="preemption" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XPreemption in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>This setting only affects devices that support MLPP.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="useTrustedRelayPoint" type="xsd:string" default="Default" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="retryVideoCallAsAudio" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="subscribeCallingSearchSpaceId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="subscribeCallingSearchSpaceName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="rerouteCallingSearchSpaceId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="rerouteCallingSearchSpaceName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="referCallingSearchSpaceId" type="axlapi:XUUID" minOccurs="0"/>
						<xsd:element name="referCallingSearchSpaceName" type="axlapi:String50" minOccurs="0"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationUnknownCSS" type="axlapi:XCallingSearchSpace" nillable="true"/>
						<xsd:element name="cgpnTransformationUnknownCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="cdpnTransformationCSSId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="cdpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCdpnTransformCSS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="unattendedPort" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="mtpRequired" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="unknownPrefix" type="axlapi:String16" nillable="false" minOccurs="0"/>
					<xsd:element name="destinationaddress" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Valid characters for Destination Address are letters, numbers, dashes and dots(periods). IP address should have four 8-bit numbers seperated by periods. Host name should start with letter and end with letter or number.</xsd:...
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="destAddrIsSRV" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is ignored and destAddrIsSRV is set to false if destinationaddress is an IP address and destinationport is mentioned correctly.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="destinationport" type="xsd:integer" default="0" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag depends on destAddrIsSRV. It is mandatory when destAddrIsSRV is false or when destination address is an IP address. Valid values between 1024 to 65535 (inclusive)</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new Security Profile for this phone.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:element name="securityProfileId" type="axlapi:XUUID"/>
						<xsd:element name="securityProfileName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:element name="tkSipCodec" type="xsd:string" nillable="false" minOccurs="0"><!--This field is of the type axl:XSIPCodec in AXLEnums.xsd-->
						<xsd:annotation>
							<xsd:documentation>The ampersand is a reserved character in xml. It can be escaped as "&amp;"</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="sipProfileId" type="axlapi:XUUID"/>
						<xsd:element name="sipProfileName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:element name="sigDigits" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The value of sigDigits  must be either from 0 to 32 or 99. Here 99 means All. enable attribute is Read-Only. If sigDigits is 0-32 then enable is true, if signDigits is 99 then enable is false.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:simpleContent>
								<xsd:extension base="xsd:nonNegativeInteger">
									<xsd:attribute name="enable" type="xsd:boolean" use="optional"/>
								</xsd:extension>
							</xsd:simpleContent>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="connectedNamePresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="connectedPartyIdPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingPartySelection" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XCallingPartySelection in AXLEnums.xsd-->
					<xsd:element name="callingname" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="callingLineIdPresentation" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XPresentationBit in AXLEnums.xsd-->
					<xsd:element name="prefixDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="callerName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Characters which are not valid for caller name are ampersand, braces, less than or greater than, percentage sign, double quotes, square brackets and pipe.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="callerIdDN" type="axlapi:String50" minOccurs="0"/>
					<xsd:element name="acceptInboundRDNIS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="acceptOutboundRDNIS" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="srtpAllowed" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="srtpFallbackAllowed" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only if srtpAllowed is set to false.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="isPaiEnabled" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="sipPrivacy" type="axlapi:XSipPrivacy" default="Default" nillable="false" minOccurs="0"/>
					<xsd:element name="isRpidEnabled" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="sipAssertedType" type="axlapi:XSipAssertedType" default="Default" nillable="false" minOccurs="0"/>
					<xsd:element name="licensedCapacity" type="xsd:nonNegativeInteger" default="0" minOccurs="0"/>
					<xsd:element name="destinationAddressIPv6" type="xsd:string" minOccurs="0"/>
					<xsd:element name="DTMFSignalingMethod" type="axlapi:XDTMFSignaling" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="geoLocation" type="axlapi:XGeoLocation">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="geoLocationName" type="axlapi:String100"/>
					</xsd:choice>
					<xsd:element name="sendGeoLocation" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="unknownStripDigits" type="xsd:nonNegativeInteger" nillable="true" minOccurs="0"/>
					<xsd:element name="useDevicePoolCgpnTransformUnknownCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateSIPTrunk" type="axlapi:UpdateSIPTrunkReq" nillable="false"/>
	<xsd:element name="updateSIPTrunkResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddSIPRealmReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new SIP Realm.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newSIPRealm" type="axlapi:XSIPRealm">
						<xsd:annotation>
							<xsd:documentation>The new SIP Realm to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addSIPRealm" type="axlapi:AddSIPRealmReq"/>
	<xsd:element name="addSIPRealmResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveSIPRealmReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified SIP Realm.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the SIP Realm to be removed. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="realm" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The  SIP Realm to be removed. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeSIPRealm" type="axlapi:RemoveSIPRealmReq"/>
	<xsd:element name="removeSIPRealmResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateSIPRealmReq">
		<xsd:annotation>
			<xsd:documentation>Updates an SIP Realm.  Specify the SIP Realm to be modified .</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="xsd:string" nillable="false"/>
						<xsd:element name="realm" type="xsd:string" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newRealm" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userid" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The userId of the user. Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="digestCredentials" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The digestCredentials to be modified.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateSIPRealm" type="axlapi:UpdateSIPRealmReq"/>
	<xsd:element name="updateSIPRealmResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetSIPRealmReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified SIP Realm .</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the SIP Realm to be retrieved. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="realm" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The SIP Realm to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPRealm" type="axlapi:GetSIPRealmReq"/>
	<xsd:complexType name="GetSIPRealmRes">
		<xsd:annotation>
			<xsd:documentation>Contains the SIP Realm that was specified by the GetSIPRealm request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="sipRealm" type="axlapi:XSIPRealm"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPRealmResponse" type="axlapi:GetSIPRealmRes"/>
	<xsd:complexType name="StandardSIPRealmResponse">
		<xsd:annotation>
			<xsd:documentation>Returns either the GUID of the object that was altered, or returns true if the operation was successful.  Whichever is appropriate for the corresponding request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:simpleType>
							<xsd:restriction base="xsd:string">

share/AXLSoap.xsd  view on Meta::CPAN

			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddSIPProfileReq">
		<xsd:annotation>
			<xsd:documentation>Adds  new SIPProfile to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="sipProfile" type="axlapi:XSIPProfile"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addSIPProfile" type="axlapi:AddSIPProfileReq"/>
	<xsd:element name="addSIPProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateSIPProfileReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:UniqueString255" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:UniqueString255" nillable="false" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String100" nillable="true" minOccurs="0"/>
					<xsd:element name="defaultTelephonyEventPayloadType" type="xsd:long" default="101" nillable="false" minOccurs="0"/>
					<xsd:element name="redirectByApplication" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="ringing180" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="timerInvite" type="xsd:long" default="180" nillable="false" minOccurs="0"/>
					<xsd:element name="timerRegisterDelta" type="xsd:long" default="5" nillable="false" minOccurs="0"/>
					<xsd:element name="timerRegister" type="xsd:long" default="3600" nillable="false" minOccurs="0"/>
					<xsd:element name="timerT1" type="xsd:long" default="500" nillable="false" minOccurs="0"/>
					<xsd:element name="timerT2" type="xsd:long" default="4000" nillable="false" minOccurs="0"/>
					<xsd:element name="retryInvite" type="xsd:long" default="6" nillable="false" minOccurs="0"/>
					<xsd:element name="retryNotInvite" type="xsd:long" default="10" nillable="false" minOccurs="0"/>
					<xsd:element name="startMediaPort" type="xsd:long" default="16384" nillable="false" minOccurs="0"/>
					<xsd:element name="stopMediaPort" type="xsd:long" default="32766" nillable="false" minOccurs="0"/>
					<xsd:element name="callpickupURI" type="axlapi:Name128" default="x-cisco-serviceuri-pickup" nillable="false" minOccurs="0"/>
					<xsd:element name="callpickupListURI" type="axlapi:String128" default="x-cisco-serviceuri-opickup" nillable="false" minOccurs="0"/>
					<xsd:element name="callpickupGroupURI" type="axlapi:String128" default="x-cisco-serviceuri-gpickup" nillable="false" minOccurs="0"/>
					<xsd:element name="meetmeServiceURI" type="axlapi:String128" default="x-cisco-serviceuri-meetme" nillable="false" minOccurs="0"/>
					<xsd:element name="userInfo" type="axlapi:XZzuserInfo" default="None" nillable="false" minOccurs="0"/>
					<xsd:element name="dtmfDbLevel" type="axlapi:XZzdtmfDbLevel" default="Nominal" nillable="false" minOccurs="0"/>
					<xsd:element name="callHoldRingback" type="axlapi:XZzpreff" default="Off" nillable="false" minOccurs="0"/>
					<xsd:element name="anonymousCallBlock" type="axlapi:XZzpreff" default="Off" nillable="false" minOccurs="0"/>
					<xsd:element name="callerIdBlock" type="axlapi:XZzpreff" default="Off" nillable="false" minOccurs="0"/>
					<xsd:element name="dndControl" type="axlapi:XZzdndcontrol" default="Admin" nillable="false" minOccurs="0"/>
					<xsd:element name="telnetLevel" type="axlapi:XTelnetLevel" default="Disabled" nillable="false" minOccurs="0"/>
					<xsd:element name="timerKeepAlive" type="xsd:long" default="120" nillable="false" minOccurs="0"/>
					<xsd:element name="timerSubscribe" type="xsd:long" default="120" nillable="false" minOccurs="0"/>
					<xsd:element name="timerSubscribeDelta" type="xsd:long" default="5" nillable="false" minOccurs="0"/>
					<xsd:element name="maxRedirects" type="xsd:long" default="70" nillable="false" minOccurs="0"/>
					<xsd:element name="timerOffhookToFirstDigit" type="xsd:long" default="15000" nillable="false" minOccurs="0"/>
					<xsd:element name="callForwardURI" type="axlapi:String128" default="x-cisco-serviceuri-cfwdall" nillable="false" minOccurs="0"/>
					<xsd:element name="abbreviatedDialURI" type="axlapi:String128" default="x-cisco-serviceuri-abbrdial" nillable="false" minOccurs="0"/>
					<xsd:element name="confJoinEnable" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="rfc2543Hold" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="semiAttendedTransfer" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:element name="enableVAD" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="stutterMsgWaiting" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="callStats" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="t38Invite" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:element name="rerouteIncomingRequest" type="axlapi:XSIPReroute" default="Never" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="resourcePriorityNamespaceList" type="axlapi:XResourcePriorityNamespaceList" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="resourcePriorityNamespaceListName" type="axlapi:Name50" default="Null" nillable="true"/>
					</xsd:choice>
					<xsd:element name="enableAnatForEarlyOfferCalls" type="xsd:string" minOccurs="0"/>
					<xsd:element name="gClear" type="axlapi:XGClear" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateSIPProfile" type="axlapi:UpdateSIPProfileReq"/>
	<xsd:element name="updateSIPProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getSIPProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetSIPProfileRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="sipProfile" type="axlapi:XSIPProfile"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPProfileResponse" type="axlapi:GetSIPProfileRes"/>
	<xsd:element name="removeSIPProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeSIPProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRecordingProfileReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Recording Profile.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newRecordingProfile" type="axlapi:XRecordingProfile">
						<xsd:annotation>
							<xsd:documentation>The new Recording Profile to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRecordingProfile" type="axlapi:AddRecordingProfileReq"/>
	<xsd:element name="addRecordingProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="RemoveRecordingProfileReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Recording Profile.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the Recording Profile to be removed. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="name" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The Recording Profile to be removed. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeRecordingProfile" type="axlapi:RemoveRecordingProfileReq"/>
	<xsd:element name="removeRecordingProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRecordingProfileReq">
		<xsd:annotation>
			<xsd:documentation>Updates a Recording Profile.  Specify the Recording Profile to be modified .</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="xsd:string" nillable="false"/>
						<xsd:element name="name" type="xsd:string" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0" maxOccurs="0">
						<xsd:element name="recordingCSS" type="axlapi:XCallingSearchSpace" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="recordingCSSName" type="axlapi:UniqueName50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="recorderDestination" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The DN or URL of the recorder to be modified.Not Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRecordingProfile" type="axlapi:UpdateRecordingProfileReq"/>
	<xsd:element name="updateRecordingProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetRecordingProfileReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves the specified Recording Profile .</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:choice>
					<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The GUID of the Recording Profile to be retrieved. Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="name" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>The Recording Profile to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:choice>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRecordingProfile" type="axlapi:GetRecordingProfileReq"/>
	<xsd:complexType name="GetRecordingProfileRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Recording Profile that was specified by the getRecordingProfile request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="recordingProfile">
									<xsd:complexType>
										<xsd:complexContent>
											<xsd:extension base="axlapi:XRecordingProfile">
												<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
											</xsd:extension>
										</xsd:complexContent>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRecordingProfileResponse" type="axlapi:GetRecordingProfileRes"/>
	<xsd:complexType name="AddPilotPointReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Pilot Point to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="pilotPoint" type="axlapi:XPilotPoint"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addPilotPoint" type="axlapi:AddPilotPointReq"/>
	<xsd:element name="addPilotPointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdatePilotPointReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Pilot Point in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name for this Pilot Point.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePool" type="axlapi:XDevicePool">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="axlapi:UniqueString50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="routePartition" type="axlapi:XRoutePartition">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="routePartitionName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpace" type="axlapi:XCallingSearchSpace">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:element name="pilotNumber" type="xsd:string" minOccurs="0"/>
					<xsd:element name="useFirstAvailable" type="xsd:boolean" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This field has been deprecated in Seadragon</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="location" type="axlapi:XLocation">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="locationName" type="axlapi:String50"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updatePilotPoint" type="axlapi:UpdatePilotPointReq"/>
	<xsd:element name="updatePilotPointResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getPilotPoint" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetPilotPointRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Pilot Point that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="pilotPoint">
									<xsd:complexType>
										<xsd:complexContent>
											<xsd:extension base="axlapi:XPilotPoint">
												<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
											</xsd:extension>
										</xsd:complexContent>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getPilotPointResponse" type="axlapi:GetPilotPointRes"/>
	<xsd:element name="removePilotPoint" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removePilotPointResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateLicenseCapabilitiesReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string"/>
					<xsd:element name="enableUPS" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The only valid values for enableUPS are true, True, false and False.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="enableUPC" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The only valid values for enableUPC are true, True, false and False.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateLicenseCapabilities" type="axlapi:UpdateLicenseCapabilitiesReq"/>
	<xsd:element name="updateLicenseCapabilitiesResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetLicenseCapabilitiesReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The ID of the user to be retrieved.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getLicenseCapabilities" type="axlapi:GetLicenseCapabilitiesReq"/>
	<xsd:complexType name="GetLicenseCapabilitiesRes">
		<xsd:annotation>
			<xsd:documentation>Contains the license capabilities for the user specified in the getLicenseCapabilities request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="licenseCapabilities">
									<xsd:complexType>
										<xsd:complexContent>
											<xsd:extension base="axlapi:XLicenseCapabilities">
												<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
											</xsd:extension>
										</xsd:complexContent>
									</xsd:complexType>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getLicenseCapabilitiesResponse" type="axlapi:GetLicenseCapabilitiesRes"/>
	<!-- Existing UpdateAppUser which will be replaced by the new code
	<xsd:complexType name="UpdateAppUserReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing application user. Specify the user to be modified with their user id.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="userid" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The userid of the user to be modified.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="password" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation>The new password for the user.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="digestCredentials" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="passwordCredentials" minOccurs="0">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:choice minOccurs="0">
									<xsd:element name="pwdCredPolicy" type="axlapi:XUUID">
										<xsd:annotation>
											<xsd:documentation>Only uuid can be accepted.</xsd:documentation>
										</xsd:annotation>
									</xsd:element>
									<xsd:element name="pwdCredPolicyName" type="axlapi:String50"/>
								</xsd:choice>
								<xsd:element name="pwdCredUserCantChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pwdCredUserMustChange can be true or pwdCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pwdCredUserMustChange" type="xsd:boolean" nillable="false" minOccurs="0">
									<xsd:annotation>
										<xsd:documentation>Either pwdCredUserMustChange can be true or pwdCredUserCantChange can be true. Not Nullable. </xsd:documentation>
									</xsd:annotation>
								</xsd:element>
								<xsd:element name="pwdCredDoesNotExpire" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pwdCredResetHackCount" type="xsd:boolean" minOccurs="0"/>
								<xsd:element name="pwdCredSetLockOut" type="xsd:boolean" minOccurs="0"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateAppUser" type="axlapi:UpdateAppUserReq"/>
	<xsd:element name="updateAppUserResponse" type="axlapi:StandardResponse"/>
-->
	<xsd:complexType name="AddMobileVoiceAccessReq">
		<xsd:sequence>
			<xsd:element name="mobileVoiceAccess" type="axlapi:XMobileVoiceAccess"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="addMobileVoiceAccess" type="axlapi:AddMobileVoiceAccessReq"/>
	<xsd:element name="addMobileVoiceAccessResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMobileVoiceAccessReq">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID"/>
				<xsd:element name="pattern" type="xsd:string"/>
			</xsd:choice>
			<xsd:element name="newPattern" type="xsd:string" nillable="false" minOccurs="0"/>
			<xsd:choice minOccurs="0">
				<xsd:element name="newRoutePartitionId" type="axlapi:XUUID" nillable="true">
					<xsd:annotation>
						<xsd:documentation>The GUID of the new route partition of this meet me number.</xsd:documentation>
					</xsd:annotation>
				</xsd:element>
				<xsd:element name="newRoutePartitionName" type="axlapi:String50" nillable="true"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="updateMobileVoiceAccess" type="axlapi:UpdateMobileVoiceAccessReq"/>
	<xsd:element name="updateMobileVoiceAccessResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetMobileVoiceAccessReq">
	<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID"/>
				<xsd:element name="pattern" type="xsd:string"/>
			</xsd:choice>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMobileVoiceAccess" type="axlapi:GetMobileVoiceAccessReq"/>
	<xsd:complexType name="GetMobileVoiceAccessRes">
	<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="mobileVoiceAccess" type="axlapi:XMobileVoiceAccess"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMobileVoiceAccessResponse" type="axlapi:GetMobileVoiceAccessRes"/>
	<xsd:complexType name="RemoveMobileVoiceAccessReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified Mobile Voice Access from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID"/>
				<xsd:element name="pattern" type="xsd:string"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="removeMobileVoiceAccess" type="axlapi:RemoveMobileVoiceAccessReq"/>
	<xsd:element name="removeMobileVoiceAccessResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddIVRUserLocaleReq">
		<xsd:sequence>
			<xsd:element name="ivrUserLocale" type="axlapi:XIVRUserLocale"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="addIVRUserLocale" type="axlapi:AddIVRUserLocaleReq"/>
	<xsd:element name="addIVRUserLocaleResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateIVRUserLocaleReq">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID"/>
				<xsd:element name="userLocale" type="axlapi:String50"/>
			</xsd:choice>
			<xsd:element name="newUserLocale" type="xsd:string" minOccurs="0"/><!--This field is of the type axl:XUserLocale in AXLEnums.xsd-->
			<xsd:element name="newOrderIndex" type="xsd:integer" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="updateIVRUserLocale" type="axlapi:UpdateIVRUserLocaleReq"/>
	<xsd:element name="updateIVRUserLocaleResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetIVRUserLocaleReq">
	<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
				<xsd:element name="userLocale" type="axlapi:String50" nillable="false"/>
			</xsd:choice>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getIVRUserLocale" type="axlapi:GetIVRUserLocaleReq"/>
	<xsd:complexType name="GetIVRUserLocaleRes">
	<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="ivrUserLocale" type="axlapi:XIVRUserLocale"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getIVRUserLocaleResponse" type="axlapi:GetIVRUserLocaleRes"/>
	<xsd:complexType name="RemoveIVRUserLocaleReq">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="uuid" type="axlapi:XUUID"/>
				<xsd:element name="userLocale" type="axlapi:String50"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="removeIVRUserLocale" type="axlapi:RemoveIVRUserLocaleReq"/>
	<xsd:element name="removeIVRUserLocaleResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddMobilityReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:XMobility"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addMobility" type="axlapi:AddMobilityReq"/>
	<xsd:element name="addMobilityResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateMobilityReq">
		<xsd:sequence>
			<xsd:sequence>
				<xsd:annotation>
					<xsd:documentation>It is mandatory to give either handoffNumber or DTMFNumber tag in the request. Both can't be null.</xsd:documentation>
				</xsd:annotation>
				<xsd:choice>
					<xsd:element name="handoffUuid" type="axlapi:XUUID" minOccurs="0"/>
					<xsd:element name="handoffNumber" type="xsd:string" minOccurs="0"/>
				</xsd:choice>
				<xsd:choice>
					<xsd:element name="DTMFUuid" type="axlapi:XUUID" minOccurs="0"/>
					<xsd:element name="DTMFNumber" type="xsd:string" minOccurs="0"/>
				</xsd:choice>
			</xsd:sequence>
			<xsd:sequence>
				<xsd:element name="newHandoffNumber" type="xsd:string" minOccurs="0"/>
				<xsd:choice minOccurs="0">
					<xsd:element name="newHandoffPartitionId" type="axlapi:XUUID"/>
					<xsd:element name="newHandoffPartitionName" type="axlapi:String50"/>
				</xsd:choice>
				<xsd:element name="newDTMFNumber" type="xsd:string" minOccurs="0"/>
				<xsd:choice minOccurs="0">
					<xsd:element name="newDTMFPartitionId" type="axlapi:XUUID"/>
					<xsd:element name="newDTMFPartitionName" type="axlapi:String50"/>
				</xsd:choice>
			</xsd:sequence>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="updateMobility" type="axlapi:UpdateMobilityReq"/>
	<xsd:element name="updateMobilityResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetMobilityReq">
		<xsd:annotation>
			<xsd:documentation>Retrieves mobility configuration information.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
		<xsd:sequence>
			<xsd:annotation>
				<xsd:documentation>It is mandatory to give either handoffNumber or DTMFNumber tag in the request. Both can't be null.</xsd:documentation>
			</xsd:annotation>
			<xsd:choice>
				<xsd:element name="handoffUuid" type="axlapi:XUUID" minOccurs="0"/>
				<xsd:element name="handoffNumber" type="xsd:string" minOccurs="0"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="DTMFUuid" type="axlapi:XUUID" minOccurs="0"/>
				<xsd:element name="DTMFNumber" type="xsd:string" minOccurs="0"/>
			</xsd:choice>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMobility" type="axlapi:GetMobilityReq"/>
	<xsd:complexType name="GetMobilityRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="mobility" type="axlapi:XMobility"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getMobilityResponse" type="axlapi:GetMobilityRes"/>
	<xsd:complexType name="GetCCMVersionReq">
		<xsd:sequence>
			<xsd:element name="processNodeName" type="axlapi:String255" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="getCCMVersion" type="axlapi:GetCCMVersionReq"/>
	<xsd:complexType name="GetCCMVersionRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="componentVersion" type="axlapi:XCCMVersion"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCCMVersionResponse" type="axlapi:GetCCMVersionRes"/>
	<xsd:complexType name="GetOSVersionReq"/>
	<xsd:element name="getOSVersion" type="axlapi:GetOSVersionReq"/>
	<xsd:complexType name="GetOSVersionRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="os" type="axlapi:XOSVersion"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getOSVersionResponse" type="axlapi:GetOSVersionRes"/>
	<xsd:complexType name="RemoveMobilityReq">
		<xsd:annotation>
			<xsd:documentation>Removes the specified DTMF/Handoff pattern from the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="handoffUuid" type="axlapi:XUUID"/>
				<xsd:element name="handoffNumber" type="xsd:string"/>
			</xsd:choice>
			<xsd:choice>
				<xsd:element name="DTMFUuid" type="axlapi:XUUID"/>
				<xsd:element name="DTMFNumber" type="xsd:string"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="removeMobility" type="axlapi:RemoveMobilityReq"/>
	<xsd:element name="removeMobilityResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddPhoneTemplateReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="phoneTemplate" type="axlapi:XPhoneTemplate"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addPhoneTemplate" type="axlapi:AddPhoneTemplateReq"/>
	<xsd:element name="addPhoneTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdatePhoneTemplateReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String50" nillable="false"/>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0"/>
					<xsd:element name="buttons" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is used to modify the fields corresponding to one button. The feature and label of the first button cannot be modified.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="button" type="axlapi:XButton" minOccurs="0" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updatePhoneTemplate" type="axlapi:UpdatePhoneTemplateReq"/>
	<xsd:element name="updatePhoneTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getPhoneTemplate" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetPhoneTemplateRes">
		<xsd:annotation>
			<xsd:documentation>Returns the phone template specified by the getPhoneTemplate request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="phoneTemplate" type="axlapi:XPhoneTemplate"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getPhoneTemplateResponse" type="axlapi:GetPhoneTemplateRes"/>
	<xsd:element name="removePhoneTemplate" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removePhoneTemplateResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddCredentialPolicyReq">
		<xsd:sequence>
			<xsd:element name="credentialPolicy" type="axlapi:XCredentialPolicy"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="addCredentialPolicy" type="axlapi:AddCredentialPolicyReq"/>
	<xsd:element name="addCredentialPolicyResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateCredentialPolicyReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="name" type="axlapi:String255"/>
					<xsd:element name="newName" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="noLimitForFailedLogon" type="xsd:boolean" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If this tag is set to true, zero is inserted into the database for failedLogon.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="failedLogon" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Failed logon must be a number in the range 0 to 100.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="resetFailedLogonAttempts" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Reset Failed logon attempts must be a number in the range 1 to 120.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="administratorMustUnlock" type="xsd:boolean" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If this tag is set to true, zero is inserted into the database for lockoutDuration.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="lockoutDuration" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Lockout duration must be a number in the range 0 to 1440.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="credChangeDuration" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Credential change duration must be a number in the range 0 to 129600.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="neverExpires" type="xsd:boolean" nillable="true" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>If this tag is set to true, zero is inserted into the database for credExpiresAfter.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="credExpiresAfter" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Credential expires after must be a number in the range 0 to 365.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="minCredLength" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Minimum credential length must be a number in the range 0 to 64.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="prevCredStoredNum" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Stored number of previous credentials must be a number in the range 0 to 25.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="inactiveDaysAllowed" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Inactive days allowed must be a number in the range 0 to 5000.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="expiryWarningDays" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Expiry warning days must be a number in the range 0 to 90.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="trivialCredCheck" type="xsd:boolean" nillable="false" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateCredentialPolicy" type="axlapi:UpdateCredentialPolicyReq"/>
	<xsd:element name="updateCredentialPolicyResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getCredentialPolicy" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetCredentialPolicyRes">
	<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="credentialPolicy">
							<xsd:complexType>
								<xsd:complexContent>
									<xsd:extension base="axlapi:XCredentialPolicy">
										<xsd:attribute name="uuid" type="axlapi:XUUID" use="optional"/>
									</xsd:extension>
								</xsd:complexContent>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getCredentialPolicyResponse" type="axlapi:GetCredentialPolicyRes"/>
	<xsd:complexType name="RemoveCredentialPolicyReq">
		<xsd:sequence>
			<xsd:element name="name" type="axlapi:String255"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="removeCredentialPolicy" type="axlapi:RemoveCredentialPolicyReq"/>
	<xsd:element name="removeCredentialPolicyResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddSIPTrunkSecurityProfileReq">
		<xsd:sequence>
			<xsd:element name="SIPTrunkSecurityProfile" type="axlapi:XSIPTrunkSecurityProfile"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="addSIPTrunkSecurityProfile" type="axlapi:AddSIPTrunkSecurityProfileReq"/>
	<xsd:element name="addSIPTrunkSecurityProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateSIPTrunkSecurityProfileReq">
		<xsd:sequence>
			<xsd:choice>
				<xsd:element name="name" type="axlapi:String64" nillable="false"/>
				<xsd:element name="uuid" type="axlapi:XUUID" nillable="false"/>
			</xsd:choice>
			<xsd:element name="newName" type="axlapi:String64" minOccurs="0"/>
			<xsd:element name="description" type="axlapi:String100" minOccurs="0"/>
			<xsd:element name="securityMode" type="axlapi:XDeviceSecurityMode" nillable="true" minOccurs="0"/>
			<xsd:element name="incomingTransport" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTransport in AXLEnums.xsd-->
			<xsd:element name="outgoingTransport" type="xsd:string" nillable="true" minOccurs="0"/><!--This field is of the type axl:XTransport in AXLEnums.xsd-->
			<xsd:element name="digestAuthentication" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="noncePolicyTime" type="xsd:long" nillable="false" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Only if digestAuthentication is enabled this value can be changed.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="x509SubjectName" type="axlapi:String4096" nillable="false" minOccurs="0"/>
			<xsd:element name="incomingPort" type="xsd:long" nillable="false" minOccurs="0"/>
			<xsd:element name="applLevelAuthentication" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptPresenceSubscription" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptOutOfDialogRefer" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="acceptUnsolicitedNotification" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="allowReplaceHeader" type="xsd:boolean" nillable="false" minOccurs="0"/>
			<xsd:element name="transmitSecurityStatus" type="xsd:boolean" nillable="false" minOccurs="0"/>
		</xsd:sequence>
		<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
	</xsd:complexType>
	<xsd:element name="updateSIPTrunkSecurityProfile" type="axlapi:UpdateSIPTrunkSecurityProfileReq"/>
	<xsd:element name="updateSIPTrunkSecurityProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getSIPTrunkSecurityProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetSIPTrunkSecurityProfileRes">
	<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
		<xsd:sequence>
			<xsd:element name="return">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="SIPTrunkSecurityProfile" type="axlapi:XSIPTrunkSecurityProfile"/>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:sequence>
		</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getSIPTrunkSecurityProfileResponse" type="axlapi:GetSIPTrunkSecurityProfileRes"/>
	<xsd:element name="removeSIPTrunkSecurityProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeSIPTrunkSecurityProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddRemoteDestinationReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Remote Destination.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newRemoteDestination" type="axlapi:XRemoteDestination">
						<xsd:annotation>
							<xsd:documentation>The new Remote Destination to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRemoteDestination" type="axlapi:AddRemoteDestinationReq"/>
	<xsd:element name="addRemoteDestinationResponse" type="axlapi:StandardResponse"/>
	<!--<xsd:element name="removeRemoteDestination" type="axlapi:NameAndGUIDRequest"/>-->
	<xsd:complexType name="RemoveRemoteDestinationReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
						<xsd:element name="destination" type="xsd:string"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="removeRemoteDestination" type="axlapi:RemoveRemoteDestinationReq"/>
	<xsd:element name="removeRemoteDestinationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRemoteDestinationReq">
		<xsd:annotation>
			<xsd:documentation>Updates a Remote Destination.  Specify the Remote Destination to be modified .</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
						<xsd:element name="destination" type="xsd:string"/>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:string" nillable="true" minOccurs="0"/>
					<xsd:element name="newDestination" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new destination number for this remote destination.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="answerTooSoonTimer" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="answerTooLateTimer" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="delayBeforeRingingCell" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0"/>
					<xsd:element name="isMobilePhone" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="enableMobileConnect" type="xsd:boolean" nillable="false" minOccurs="0"/>
					<xsd:element name="lineAssociations" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The line association for this remote destination.  If this element is null, then all line associations are removed from this remote destination.  Note:  If the lineAssciations element is present, then all existing line assoc...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="lineAssociation" type="axlapi:XLineAssociation" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="timeZone" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XTimeZone in AXLEnums.xsd-->
					<xsd:choice minOccurs="0">
						<xsd:element name="todAccessId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="todAccessName" type="axlapi:String128" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="mobileSmartClientId" type="axlapi:XUUID"/>
						<xsd:element name="mobileSmartClientName" type="axlapi:String128"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRemoteDestination" type="axlapi:UpdateRemoteDestinationReq"/>
	<xsd:element name="updateRemoteDestinationResponse" type="axlapi:StandardResponse"/>
	<!--<xsd:element name="getRemoteDestination" type="axlapi:NameAndGUIDRequest"/>-->
	<xsd:complexType name="GetRemoteDestinationReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
						<xsd:element name="destination" type="xsd:string"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRemoteDestination" type="axlapi:GetRemoteDestinationReq"/>
	<xsd:complexType name="GetRemoteDestinationRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Remote Destination that was specified by the GetRemoteDestination request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="remoteDestination" type="axlapi:XRemoteDestination"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRemoteDestinationResponse" type="axlapi:GetRemoteDestinationRes"/>
	<xsd:complexType name="StandardRemoteDestinationResponse">
		<xsd:annotation>
			<xsd:documentation>Returns either the GUID of the object that was altered, or returns true if the operation was successful.  Whichever is appropriate for the corresponding request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:simpleType>
							<xsd:restriction base="xsd:string">

share/AXLSoap.xsd  view on Meta::CPAN

			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddRemoteDestinationProfileReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Remote Destination Profile.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newRemoteDestinationProfile" type="axlapi:XRemoteDestinationProfile">
						<xsd:annotation>
							<xsd:documentation>The new Remote Destination Profile to be added.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addRemoteDestinationProfile" type="axlapi:AddRemoteDestinationProfileReq"/>
	<xsd:element name="addRemoteDestinationProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeRemoteDestinationProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeRemoteDestinationProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="UpdateRemoteDestinationProfileReq">
		<xsd:annotation>
			<xsd:documentation>Updates a Remote Destination profile.  Specify the Remote Destination profile to be modified .</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the remote destination profile that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the remote destination profile that you want to update.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newName" type="xsd:Name" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new name of the remote destination profile.  Cannot be null.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="description" type="xsd:string" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new description of the remote destination profile.  Nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="callingSearchSpaceId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Calling Search Space for this phone. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="callingSearchSpaceName" type="axlapi:String50"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="devicePoolId" type="axlapi:XUUID">
							<xsd:annotation>
								<xsd:documentation>The GUID of the new Device Pool for this remote destination profile.  Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="devicePoolName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the new Device Pool for this remote destination profile. Nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="networkHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="userHoldMOHAudioSourceId" type="axlapi:XMOHAudioSourceId" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="lines" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new lines for this remote destination profile.  If this element is null, then all lines are removed from this remote destination profile.  Note:  If the lines element is present, then all existing lines are removed and r...
						</xsd:annotation>
						<xsd:complexType>
							<xsd:choice>
								<xsd:element name="line" type="axlapi:XLine" maxOccurs="unbounded"/>
								<xsd:element name="lineIdentifier" type="axlapi:XNumplanIdentifier" maxOccurs="unbounded"/>
							</xsd:choice>
						</xsd:complexType>
					</xsd:element>
					<xsd:element name="callInfoPrivacyStatus" type="xsd:string" nillable="false" minOccurs="0"/><!--This field is of the type axl:XStatus in AXLEnums.xsd-->
					<xsd:element name="userId" type="xsd:string" nillable="false" minOccurs="0"/>
					<xsd:element name="ignorePresentationIndicators" type="xsd:boolean" default="false" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="rerouteCallingSearchSpaceId" type="axlapi:XUUID" nillable="true"/>
						<xsd:element name="rerouteCallingSearchSpaceName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:choice minOccurs="0">
						<xsd:element name="cgpnTransformationCSSId" type="axlapi:XUUID" nillable="true">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="cgpnTransformationCSSName" type="axlapi:String50" nillable="true"/>
					</xsd:choice>
					<xsd:element name="useDevicePoolCgpnTransformCSS" type="xsd:boolean" default="true" nillable="false" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:element name="primaryPhoneId" type="axlapi:XDevice">
							<xsd:annotation>
								<xsd:documentation>Only the uuid attribute is read by the AXL API.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="primaryPhoneName" type="axlapi:String128" nillable="false"/>
					</xsd:choice>
					<xsd:element name="dndOption" type="axlapi:XDNDOption" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="dndStatus" type="xsd:boolean" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>This tag is valid only for devices that support DND.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:choice minOccurs="0">
						<xsd:element name="mobileSmartClientProfileId" type="axlapi:XUUID"/>
						<xsd:element name="mobileSmartClientProfileName" type="axlapi:String128"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateRemoteDestinationProfile" type="axlapi:UpdateRemoteDestinationProfileReq"/>
	<xsd:element name="updateRemoteDestinationProfileResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getRemoteDestinationProfile" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetRemoteDestinationProfileRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Remote Destination Profile that was specified by the getRemoteDestinationProfile request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="remoteDestinationProfile" type="axlapi:XRemoteDestinationProfile"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getRemoteDestinationProfileResponse" type="axlapi:GetRemoteDestinationProfileRes"/>
	<xsd:complexType name="StandardRemoteDestinationProfileResponse">
		<xsd:annotation>
			<xsd:documentation>Returns either the GUID of the object that was altered, or returns true if the operation was successful.  Whichever is appropriate for the corresponding request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:simpleType>
							<xsd:restriction base="xsd:string">

share/AXLSoap.xsd  view on Meta::CPAN

			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:complexType name="AddResourcePriorityNamespaceReq">
		<xsd:annotation>
			<xsd:documentation>Adds a new Resource Priority Namespace to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newResourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addResourcePriorityNamespace" type="axlapi:AddResourcePriorityNamespaceReq"/>
	<xsd:element name="addResourcePriorityNamespaceResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="ResourcePriorityNamespaceReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="namespace" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getResourcePriorityNamespace" type="axlapi:ResourcePriorityNamespaceReq"/>
	<xsd:complexType name="GetResourcePriorityNamespaceRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Resource Priority Namespace that was specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="resourcePriorityNamespace" type="axlapi:XResourcePriorityNamespace"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getResourcePriorityNamespaceResponse" type="axlapi:GetResourcePriorityNamespaceRes"/>
	<xsd:complexType name="UpdateResourcePriorityNamespaceReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Resource Priority Namespace in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="namespace" type="xsd:string" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The name of the ResourcePriorityNamespace to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
						<xsd:element name="uuid" type="axlapi:XUUID" nillable="false">
							<xsd:annotation>
								<xsd:documentation>The GUID of the ResourcePriorityNamespace  to be modified.  Not nullable.</xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
					<xsd:element name="newNamespace" type="xsd:string" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new namespace for this ResourcePriorityNamespace.  Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateResourcePriorityNamespace" type="axlapi:UpdateResourcePriorityNamespaceReq"/>
	<xsd:element name="updateResourcePriorityNamespaceResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeResourcePriorityNamespace" type="axlapi:ResourcePriorityNamespaceReq"/>
	<xsd:element name="removeResourcePriorityNamespaceResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GetResourcePriorityDefaultNamespaceReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest"/>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getResourcePriorityDefaultNamespace" type="axlapi:GetResourcePriorityDefaultNamespaceReq"/>
	<xsd:complexType name="GetResourcePriorityDefaultNamespaceRes">
		<xsd:annotation>
			<xsd:documentation>Contains the Resource Priority Default Namespace</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="resourcePriorityDefaultNamespace" type="axlapi:XResourcePriorityDefaultNamespace"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getResourcePriorityDefaultNamespaceResponse" type="axlapi:GetResourcePriorityDefaultNamespaceRes"/>
	<xsd:complexType name="UpdateResourcePriorityDefaultNamespaceReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Resource Priority Default Namespace in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice minOccurs="0">
						<xsd:element name="resourcePriorityDefaultNamespaceId" type="axlapi:XUUID"/>
						<xsd:element name="resourcePriorityDefaultNamespaceName" type="xsd:string">
							<xsd:annotation>
								<xsd:documentation>The name of the ResourcePriorityNamespace to be set as Default. </xsd:documentation>
							</xsd:annotation>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateResourcePriorityDefaultNamespace" type="axlapi:UpdateResourcePriorityDefaultNamespaceReq"/>
	<xsd:element name="updateResourcePriorityDefaultNamespaceResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddResourcePriorityNamespaceListReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new ResourcePriorityNamespaceList to the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="resourcePriorityNamespaceList" type="axlapi:XResourcePriorityNamespaceList" nillable="false"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addResourcePriorityNamespaceList" type="axlapi:AddResourcePriorityNamespaceListReq"/>
	<xsd:element name="addResourcePriorityNamespaceListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="getResourcePriorityNamespaceList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:complexType name="GetResourcePriorityNamespaceListRes">
		<xsd:annotation>
			<xsd:documentation>Contains the ResourcePriorityNamespaceList specified by the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="resourcePriorityNamespaceList" type="axlapi:XResourcePriorityNamespaceList"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getResourcePriorityNamespaceListResponse" type="axlapi:GetResourcePriorityNamespaceListRes"/>
	<xsd:complexType name="UpdateResourcePriorityNamespaceListReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Update an existing ResourcePriorityNamespaceList in the database.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:NameAndGUIDRequest">
				<xsd:sequence>
					<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>Not nullable.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
					<xsd:element name="members" minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>The new members of this ResourcePriorityNamespaceList.  If "members" is present, then all current members of this are removed and replaced by the "member" sub-elements.  Nullable.</xsd:documentation>
						</xsd:annotation>
						<xsd:complexType>
							<xsd:sequence minOccurs="0">
								<xsd:element name="member" type="axlapi:XResourcePriorityNamespaceListMember" maxOccurs="unbounded"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateResourcePriorityNamespaceList" type="axlapi:UpdateResourcePriorityNamespaceListReq"/>
	<xsd:element name="updateResourcePriorityNamespaceListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeResourcePriorityNamespaceList" type="axlapi:NameAndGUIDRequest"/>
	<xsd:element name="removeResourcePriorityNamespaceListResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="executeSQLQuery" type="axlapi:ExecuteSQLQueryReq" nillable="false">
		<xsd:annotation>
			<xsd:documentation>This API call is used to execute a Structured Query Language query against the database.  The sql element would contain the SQL statement.  If special characters are required, wrap the SQL command inside a CDATA element.</xsd:do...
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ExecuteSQLQueryRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="row" type="xsd:anyType" minOccurs="0" maxOccurs="unbounded">
									<xsd:annotation>
										<xsd:documentation>Each row element can contain any number of sub-elements, each sub-element is a column from that row in the result set.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="executeSQLQueryResponse" type="axlapi:ExecuteSQLQueryRes">
		<xsd:annotation>
			<xsd:documentation>The response message to executeSQLQuery.  The return element represents the result set, which can contain 0 or more rows of data. Each row can have any number of elements as defined by columns specified in the SQL Query.  The na...
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ExecuteSQLUpdateReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="sql" type="xsd:string" nillable="false">
						<xsd:annotation>
							<xsd:documentation>Request to execute an SQL update.</xsd:documentation>
						</xsd:annotation>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="executeSQLUpdate" type="axlapi:ExecuteSQLUpdateReq" nillable="false">
		<xsd:annotation>
			<xsd:documentation>This API call is used to execute a Structured Query Language Update against the database.  The sql element would contain the SQL statement</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="ExecuteSQLUpdateRes">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="rowsUpdated" type="xsd:integer">
									<xsd:annotation>
										<xsd:documentation>Rows updated indicates the number of rows updated by the SQL update.</xsd:documentation>
									</xsd:annotation>
								</xsd:element>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="executeSQLUpdateResponse" type="axlapi:ExecuteSQLUpdateRes">
		<xsd:annotation>
			<xsd:documentation>The response message to executeSQLUpdate.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="AddGeoLocationReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new GeoLocation</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newGeoLocation" type="axlapi:XGeoLocation"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addGeoLocation" type="axlapi:AddGeoLocationReq"/>
	<xsd:element name="addGeoLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GeoLocationReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String100"/>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGeoLocation" type="axlapi:GeoLocationReq"/>
	<xsd:complexType name="GetGeoLocationRes">
		<xsd:annotation>
			<xsd:documentation>Contains the GeoLocation that was specified in the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="geoLocation" type="axlapi:XGeoLocation"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGeoLocationResponse" type="axlapi:GetGeoLocationRes"/>
	<xsd:complexType name="UpdateGeoLocationReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Geo Location</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name"/>
						<xsd:element name="uuid"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="country" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="nationalSubDivision" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="district" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="communityName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="cityDivision" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="neighbourhood" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="street" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="leadingStreetDirection" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="trailingStreetSuffix" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="streetSuffix" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="houseNumber" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="houseNumberSuffix" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="landmark" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="location" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="floor" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="occupantName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="postalCode" type="axlapi:String100" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateGeoLocation" type="axlapi:UpdateGeoLocationReq"/>
	<xsd:element name="updateGeoLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeGeoLocation" type="axlapi:GeoLocationReq"/>
	<xsd:element name="removeGeoLocationResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddGeoLocationPolicyReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new GeoLocationPolicy</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newGeoLocationPolicy" type="axlapi:XGeoLocationPolicy"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addGeoLocationPolicy" type="axlapi:AddGeoLocationPolicyReq"/>
	<xsd:element name="addGeoLocationPolicyResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GeoLocationPolicyReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String100"/>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGeoLocationPolicy" type="axlapi:GeoLocationPolicyReq"/>
	<xsd:complexType name="GetGeoLocationPolicyRes">
		<xsd:annotation>
			<xsd:documentation>Contains the GeoLocationPolicy that was specified in the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="geoLocationPolicy" type="axlapi:XGeoLocationPolicy"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGeoLocationPolicyResponse" type="axlapi:GetGeoLocationPolicyRes"/>
	<xsd:complexType name="UpdateGeoLocationPolicyReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Geo Location</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name"/>
						<xsd:element name="uuid"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="country" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="nationalSubDivision" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="district" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="communityName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="cityDivision" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="neighbourhood" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="street" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="leadingStreetDirection" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="trailingStreetSuffix" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="streetSuffix" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="houseNumber" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="houseNumberSuffix" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="landmark" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="location" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="floor" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="occupantName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="postalCode" type="axlapi:String100" minOccurs="0"/>
					<xsd:choice minOccurs="0">
						<xsd:annotation>
							<xsd:documentation>One of the two choices is mandatory if PolicyMatrix table needs to be updated</xsd:documentation>
						</xsd:annotation>
						<xsd:sequence>
							<xsd:element name="addPolicies" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>Add the policies provided in the request into Matrix table</xsd:documentation>
								</xsd:annotation>
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="addPolicy" type="axlapi:XPolicyRelationship" maxOccurs="unbounded"/>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
							<xsd:element name="removePolicies" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>Removes the policies provided in the request into Matrix table</xsd:documentation>
								</xsd:annotation>
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="removePolicy" maxOccurs="unbounded">
											<xsd:complexType>
												<xsd:sequence>
													<xsd:choice>
														<xsd:element name="geoLocationPolicyA" type="axlapi:XGeoLocationPolicy"/>
														<xsd:element name="geoLocationPolicyAName" type="axlapi:String100"/>
													</xsd:choice>
													<xsd:choice>
														<xsd:element name="geoLocationPolicyB" type="axlapi:XGeoLocationPolicy"/>
														<xsd:element name="geoLocationPolicyBName" type="axlapi:String100"/>
													</xsd:choice>
												</xsd:sequence>
											</xsd:complexType>
										</xsd:element>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
							<xsd:element name="updatePolicies" minOccurs="0">
								<xsd:annotation>
									<xsd:documentation>Updates the existing policies.  Only typeLogicalPartitioningPolicy field can be updated</xsd:documentation>
								</xsd:annotation>
								<xsd:complexType>
									<xsd:sequence>
										<xsd:element name="updatePolicy" maxOccurs="unbounded">
											<xsd:complexType>
												<xsd:sequence>
													<xsd:choice>
														<xsd:element name="geoLocationPolicyA" type="axlapi:XGeoLocationPolicy"/>
														<xsd:element name="geoLocationPolicyAName" type="axlapi:String100"/>
													</xsd:choice>
													<xsd:choice>
														<xsd:element name="geoLocationPolicyB" type="axlapi:XGeoLocationPolicy"/>
														<xsd:element name="geoLocationPolicyBName" type="axlapi:String100"/>
													</xsd:choice>
													<xsd:element name="logicalPartitionPolicy"/>
												</xsd:sequence>
											</xsd:complexType>
										</xsd:element>
									</xsd:sequence>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
						<xsd:element name="relatedPolicies" minOccurs="0">
							<xsd:annotation>
								<xsd:documentation>Removes all the existing entries in Matrix table and then adds the values in the request into the Matrix table</xsd:documentation>
							</xsd:annotation>
							<xsd:complexType>
								<xsd:sequence minOccurs="0">
									<xsd:element name="relatedPolicy" type="axlapi:XPolicyRelationship" maxOccurs="unbounded"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateGeoLocationPolicy" type="axlapi:UpdateGeoLocationPolicyReq"/>
	<xsd:element name="updateGeoLocationPolicyResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeGeoLocationPolicy" type="axlapi:GeoLocationPolicyReq"/>
	<xsd:element name="removeGeoLocationPolicyResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="AddGeoLocationFilterReq" abstract="false" final="#all">
		<xsd:annotation>
			<xsd:documentation>Adds a new GeoLocationFilter</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:element name="newGeoLocationFilter" type="axlapi:XGeoLocationFilter"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="addGeoLocationFilter" type="axlapi:AddGeoLocationFilterReq"/>
	<xsd:element name="addGeoLocationFilterResponse" type="axlapi:StandardResponse"/>
	<xsd:complexType name="GeoLocationFilterReq">
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name" type="axlapi:String100"/>
						<xsd:element name="uuid" type="axlapi:XUUID"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGeoLocationFilter" type="axlapi:GeoLocationFilterReq"/>
	<xsd:complexType name="GetGeoLocationFilterRes">
		<xsd:annotation>
			<xsd:documentation>Contains the GeoLocationFilter that was specified in the request.</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIResponse">
				<xsd:sequence>
					<xsd:element name="return">
						<xsd:complexType>
							<xsd:sequence>
								<xsd:element name="geoLocationFilter" type="axlapi:XGeoLocationFilter"/>
							</xsd:sequence>
						</xsd:complexType>
					</xsd:element>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="getGeoLocationFilterResponse" type="axlapi:GetGeoLocationFilterRes"/>
	<xsd:complexType name="UpdateGeoLocationFilterReq">
		<xsd:annotation>
			<xsd:documentation>Updates an existing Geo Location</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="axlapi:APIRequest">
				<xsd:sequence>
					<xsd:choice>
						<xsd:element name="name"/>
						<xsd:element name="uuid"/>
					</xsd:choice>
					<xsd:element name="newName" type="axlapi:String100" minOccurs="0"/>
					<xsd:element name="description" type="axlapi:String255" minOccurs="0"/>
					<xsd:element name="useCountry" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useNationalSubDivision" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useDistrict" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useCommunityName" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useCityDivision" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useNeighbourhood" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useStreet" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useLeadingStreetDirection" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useTrailingStreetSuffix" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useStreetSuffix" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useHouseNumber" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useHouseNumberSuffix" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useLandmark" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useLocation" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useFloor" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="useOccupantName" type="xsd:boolean" minOccurs="0"/>
					<xsd:element name="usePostalCode" type="xsd:boolean" minOccurs="0"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="updateGeoLocationFilter" type="axlapi:UpdateGeoLocationFilterReq"/>
	<xsd:element name="updateGeoLocationFilterResponse" type="axlapi:StandardResponse"/>
	<xsd:element name="removeGeoLocationFilter" type="axlapi:GeoLocationFilterReq"/>
	<xsd:element name="removeGeoLocationFilterResponse" type="axlapi:StandardResponse"/>
</xsd:schema>



( run in 1.029 second using v1.01-cache-2.11-cpan-df04353d9ac )