1package ONVIF::Device::Types::Description;
2use strict;
3use warnings;
4
5sub get_xmlns { 'http://www.onvif.org/ver10/schema'};
6
7# derivation by restriction
8use base qw(
9    SOAP::WSDL::XSD::Typelib::Builtin::string);
10
11
12
131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
21
22
23=head1 DESCRIPTION
24
25Perl data type class for the XML Schema defined simpleType
26Description from the namespace http://www.onvif.org/ver10/schema.
27
28
29
30
31
32This clase is derived from
33   SOAP::WSDL::XSD::Typelib::Builtin::string
34. SOAP::WSDL's schema implementation does not validate data, so you can use it exactly
35like it's base type.
36
37# Description of restrictions not implemented yet.
38
39
40=head1 METHODS
41
42=head2 new
43
44Constructor.
45
46=head2 get_value / set_value
47
48Getter and setter for the simpleType's value.
49
50=head1 OVERLOADING
51
52Depending on the simple type's base type, the following operations are overloaded
53
54 Stringification
55 Numerification
56 Boolification
57
58Check L<SOAP::WSDL::XSD::Typelib::Builtin> for more information.
59
60=head1 AUTHOR
61
62Generated by SOAP::WSDL
63
64=cut
65
66