initial import
[Net-DashCS.git] / lib / Net / DashCS / Types / removeURI.pm
1 package Net::DashCS::Types::removeURI;
2 use strict;
3 use warnings;
4
5
6 __PACKAGE__->_set_element_form_qualified(0);
7
8 sub get_xmlns { 'http://dashcs.com/api/v1/emergency' };
9
10 our $XML_ATTRIBUTE_CLASS;
11 undef $XML_ATTRIBUTE_CLASS;
12
13 sub __get_attr_class {
14     return $XML_ATTRIBUTE_CLASS;
15 }
16
17 use Class::Std::Fast::Storable constructor => 'none';
18 use base qw(SOAP::WSDL::XSD::Typelib::ComplexType);
19
20 Class::Std::initialize();
21
22 { # BLOCK to scope variables
23
24 my %uri_of :ATTR(:get<uri>);
25
26 __PACKAGE__->_factory(
27     [ qw(        uri
28
29     ) ],
30     {
31         'uri' => \%uri_of,
32     },
33     {
34         'uri' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
35     },
36     {
37
38         'uri' => 'uri',
39     }
40 );
41
42 } # end BLOCK
43
44
45
46
47
48
49
50 1;
51
52
53 =pod
54
55 =head1 NAME
56
57 Net::DashCS::Types::removeURI
58
59 =head1 DESCRIPTION
60
61 Perl data type class for the XML Schema defined complexType
62 removeURI from the namespace http://dashcs.com/api/v1/emergency.
63
64
65
66
67
68
69 =head2 PROPERTIES
70
71 The following properties may be accessed using get_PROPERTY / set_PROPERTY
72 methods:
73
74 =over
75
76 =item * uri
77
78
79
80
81 =back
82
83
84 =head1 METHODS
85
86 =head2 new
87
88 Constructor. The following data structure may be passed to new():
89
90  { # Net::DashCS::Types::removeURI
91    uri =>  $some_value, # string
92  },
93
94
95
96
97 =head1 AUTHOR
98
99 Generated by SOAP::WSDL
100
101 =cut
102