65 lines
967 B
Perl
65 lines
967 B
Perl
|
|
package ONVIF::Media::Attributes::mustUnderstand;
|
|
use strict;
|
|
use warnings;
|
|
|
|
{ # BLOCK to scope variables
|
|
|
|
sub get_xmlns { 'http://schemas.xmlsoap.org/soap/envelope/' }
|
|
|
|
__PACKAGE__->__set_name('mustUnderstand');
|
|
__PACKAGE__->__set_ref();
|
|
|
|
# atomic simpleType: <attribute><simpleType
|
|
use base qw(
|
|
SOAP::WSDL::XSD::Typelib::Attribute
|
|
);
|
|
# derivation by restriction
|
|
use base qw(
|
|
SOAP::WSDL::XSD::Typelib::Builtin::boolean);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
=pod
|
|
|
|
=head1 NAME
|
|
|
|
ONVIF::Media::Attributes::mustUnderstand
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Perl data type class for the XML Schema defined attribute
|
|
mustUnderstand from the namespace http://schemas.xmlsoap.org/soap/envelope/.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This XML element type class has a atomic simpleType as it's base:
|
|
|
|
|
|
|
|
=head1 METHODS
|
|
|
|
=head2 new
|
|
|
|
my $element = ONVIF::Media::Attributes::mustUnderstand->new($data);
|
|
|
|
Constructor. The following data structure may be passed to new():
|
|
|
|
{ value => $value }
|
|
|
|
=head1 AUTHOR
|
|
|
|
Generated by SOAP::WSDL
|
|
|
|
=cut
|
|
|