initial import
[Net-DashCS.git] / lib / Net / DashCS / Types / locationStatus.pm
1 package Net::DashCS::Types::locationStatus;
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 %code_of :ATTR(:get<code>);
25 my %description_of :ATTR(:get<description>);
26
27 __PACKAGE__->_factory(
28     [ qw(        code
29         description
30
31     ) ],
32     {
33         'code' => \%code_of,
34         'description' => \%description_of,
35     },
36     {
37         'code' => 'Net::DashCS::Types::locationStatusCode',
38         'description' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
39     },
40     {
41
42         'code' => 'code',
43         'description' => 'description',
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::locationStatus
63
64 =head1 DESCRIPTION
65
66 Perl data type class for the XML Schema defined complexType
67 locationStatus 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 * code
82
83
84 =item * description
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::locationStatus
99    code => $some_value, # locationStatusCode
100    description =>  $some_value, # string
101  },
102
103
104
105
106 =head1 AUTHOR
107
108 Generated by SOAP::WSDL
109
110 =cut
111