initial import
[Net-DashCS.git] / lib / Net / DashCS / Types / removeLocationResponse.pm
1 package Net::DashCS::Types::removeLocationResponse;
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 %LocationStatus_of :ATTR(:get<LocationStatus>);
25
26 __PACKAGE__->_factory(
27     [ qw(        LocationStatus
28
29     ) ],
30     {
31         'LocationStatus' => \%LocationStatus_of,
32     },
33     {
34         'LocationStatus' => 'Net::DashCS::Types::locationStatus',
35     },
36     {
37
38         'LocationStatus' => 'LocationStatus',
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::removeLocationResponse
58
59 =head1 DESCRIPTION
60
61 Perl data type class for the XML Schema defined complexType
62 removeLocationResponse 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 * LocationStatus
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::removeLocationResponse
91    LocationStatus =>  { # Net::DashCS::Types::locationStatus
92      code => $some_value, # locationStatusCode
93      description =>  $some_value, # string
94    },
95  },
96
97
98
99
100 =head1 AUTHOR
101
102 Generated by SOAP::WSDL
103
104 =cut
105