1
2package MyElements::GetSpecificCookieResponse;
3use strict;
4use warnings;
5
6{ # BLOCK to scope variables
7
8sub get_xmlns { 'http://www.fullerdata.com/FortuneCookie/FortuneCookie.asmx' }
9
10__PACKAGE__->__set_name('GetSpecificCookieResponse');
11__PACKAGE__->__set_nillable();
12__PACKAGE__->__set_minOccurs();
13__PACKAGE__->__set_maxOccurs();
14__PACKAGE__->__set_ref();
15
16use base qw(
17    SOAP::WSDL::XSD::Typelib::Element
18    SOAP::WSDL::XSD::Typelib::ComplexType
19);
20
21our $XML_ATTRIBUTE_CLASS;
22undef $XML_ATTRIBUTE_CLASS;
23
24sub __get_attr_class {
25    return $XML_ATTRIBUTE_CLASS;
26}
27
28use Class::Std::Fast::Storable constructor => 'none';
29use base qw(SOAP::WSDL::XSD::Typelib::ComplexType);
30
31Class::Std::initialize();
32
33{ # BLOCK to scope variables
34
35my %GetSpecificCookieResult_of :ATTR(:get<GetSpecificCookieResult>);
36
37__PACKAGE__->_factory(
38    [ qw(        GetSpecificCookieResult
39
40    ) ],
41    {
42        'GetSpecificCookieResult' => \%GetSpecificCookieResult_of,
43    },
44    {
45        'GetSpecificCookieResult' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
46    },
47    {
48
49        'GetSpecificCookieResult' => 'GetSpecificCookieResult',
50    }
51);
52
53} # end BLOCK
54
55
56
57
58
59
60} # end of BLOCK
61
62
63
641;
65
66
67=pod
68
69=head1 NAME
70
71MyElements::GetSpecificCookieResponse
72
73=head1 DESCRIPTION
74
75Perl data type class for the XML Schema defined element
76GetSpecificCookieResponse from the namespace http://www.fullerdata.com/FortuneCookie/FortuneCookie.asmx.
77
78
79
80
81
82
83
84=head1 PROPERTIES
85
86The following properties may be accessed using get_PROPERTY / set_PROPERTY
87methods:
88
89=over
90
91=item * GetSpecificCookieResult
92
93 $element->set_GetSpecificCookieResult($data);
94 $element->get_GetSpecificCookieResult();
95
96
97
98
99=back
100
101
102=head1 METHODS
103
104=head2 new
105
106 my $element = MyElements::GetSpecificCookieResponse->new($data);
107
108Constructor. The following data structure may be passed to new():
109
110 {
111   GetSpecificCookieResult =>  $some_value, # string
112 },
113
114=head1 AUTHOR
115
116Generated by SOAP::WSDL
117
118=cut
119
120