initial import
[Net-DashCS.git] / lib / Net / DashCS / Types / getLocationsByURIResponse.pm
1 package Net::DashCS::Types::getLocationsByURIResponse;
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 %Locations_of :ATTR(:get<Locations>);
25
26 __PACKAGE__->_factory(
27     [ qw(        Locations
28
29     ) ],
30     {
31         'Locations' => \%Locations_of,
32     },
33     {
34         'Locations' => 'Net::DashCS::Types::location',
35     },
36     {
37
38         'Locations' => 'Locations',
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::getLocationsByURIResponse
58
59 =head1 DESCRIPTION
60
61 Perl data type class for the XML Schema defined complexType
62 getLocationsByURIResponse 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 * Locations
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::getLocationsByURIResponse
91    Locations =>  { # Net::DashCS::Types::location
92      activatedtime =>  $some_value, # dateTime
93      address1 =>  $some_value, # string
94      address2 =>  $some_value, # string
95      callername =>  $some_value, # string
96      comments =>  $some_value, # string
97      community =>  $some_value, # string
98      customerorderid =>  $some_value, # string
99      latitude =>  $some_value, # double
100      legacydata =>  { # Net::DashCS::Types::legacyLocationData
101        housenumber =>  $some_value, # string
102        predirectional =>  $some_value, # string
103        streetname =>  $some_value, # string
104        suite =>  $some_value, # string
105      },
106      locationid =>  $some_value, # string
107      longitude =>  $some_value, # double
108      plusfour =>  $some_value, # string
109      postalcode =>  $some_value, # string
110      state =>  $some_value, # string
111      status =>  { # Net::DashCS::Types::locationStatus
112        code => $some_value, # locationStatusCode
113        description =>  $some_value, # string
114      },
115      type => $some_value, # locationType
116      updatetime =>  $some_value, # dateTime
117    },
118  },
119
120
121
122
123 =head1 AUTHOR
124
125 Generated by SOAP::WSDL
126
127 =cut
128