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