initial import
[Net-DashCS.git] / lib / Net / DashCS / Types / uri.pm
1 package Net::DashCS::Types::uri;
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 %callername_of :ATTR(:get<callername>);
25 my %uri_of :ATTR(:get<uri>);
26
27 __PACKAGE__->_factory(
28     [ qw(        callername
29         uri
30
31     ) ],
32     {
33         'callername' => \%callername_of,
34         'uri' => \%uri_of,
35     },
36     {
37         'callername' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
38         'uri' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
39     },
40     {
41
42         'callername' => 'callername',
43         'uri' => 'uri',
44     }
45 );
46
47 } # end BLOCK
48
49
50
51
52
53
54
55 1;
56
57
58 =pod
59
60 =head1 NAME
61
62 Net::DashCS::Types::uri
63
64 =head1 DESCRIPTION
65
66 Perl data type class for the XML Schema defined complexType
67 uri from the namespace http://dashcs.com/api/v1/emergency.
68
69
70
71
72
73
74 =head2 PROPERTIES
75
76 The following properties may be accessed using get_PROPERTY / set_PROPERTY
77 methods:
78
79 =over
80
81 =item * callername
82
83
84 =item * uri
85
86
87
88
89 =back
90
91
92 =head1 METHODS
93
94 =head2 new
95
96 Constructor. The following data structure may be passed to new():
97
98  { # Net::DashCS::Types::uri
99    callername =>  $some_value, # string
100    uri =>  $some_value, # string
101  },
102
103
104
105
106 =head1 AUTHOR
107
108 Generated by SOAP::WSDL
109
110 =cut
111