File Coverage

lib/eBay/API/XML/DataType/ListingDurationDefinitionsType.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3             package eBay::API::XML::DataType::ListingDurationDefinitionsType;
4              
5 1     1   2156 use strict;
  1         4  
  1         86  
6 1     1   6 use warnings;
  1         3  
  1         35  
7              
8             ##########################################################################
9             #
10             # Module: ............... eBay/API/XML
11             # File: ................. ListingDurationDefinitionsType.pm
12             # Generated by: ......... genEBayApiDataTypes.pl
13             # Last Generated: ....... 08/24/2008 16:44
14             # API Release Number: ... 579
15             #
16             ##########################################################################
17              
18             =head1 NAME
19              
20             eBay::API::XML::DataType::ListingDurationDefinitionsType
21              
22             =head1 DESCRIPTION
23              
24             A container node for sets of durations, each set describing the durations allowed for
25             one listing type.
26              
27              
28              
29             =head1 SYNOPSIS
30              
31             =cut
32              
33              
34             =head1 INHERITANCE
35              
36             eBay::API::XML::DataType::ListingDurationDefinitionsType inherits from the L class
37              
38             =cut
39              
40 1     1   46 use eBay::API::XML::BaseDataType;
  0            
  0            
41             our @ISA = ("eBay::API::XML::BaseDataType");
42              
43             use eBay::API::XML::DataType::ListingDurationDefinitionType;
44              
45              
46             my @gaProperties = ( [ 'ListingDuration', 'ns:ListingDurationDefinitionType', '1'
47             ,'eBay::API::XML::DataType::ListingDurationDefinitionType', '1' ]
48             );
49             push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()};
50              
51             my @gaAttributes = ( [ 'Version', 'xs:int', '', '', '' ]
52             );
53             push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()};
54              
55             =head1 Subroutines:
56              
57             =cut
58              
59             sub new {
60             my $classname = shift;
61             my %args = @_;
62             my $self = $classname->SUPER::new(%args);
63             return $self;
64             }
65              
66             sub isScalar {
67             return 0;
68             }
69              
70              
71              
72             =head2 setListingDuration()
73              
74             Contains the duration periods that apply to a certain listing type.
75              
76             # Argument: reference to an array
77             of 'ns:ListingDurationDefinitionType'
78              
79             =cut
80              
81             sub setListingDuration {
82             my $self = shift;
83             $self->{'ListingDuration'} =
84             $self->convertArray_To_RefToArrayIfNeeded(@_);
85             }
86              
87             =head2 getListingDuration()
88              
89             Calls: GetCategoryFeatures
90             Returned: Conditionally
91             Details: DetailLevel: ReturnAll
92              
93             # Returns: reference to an array
94             of 'ns:ListingDurationDefinitionType'
95              
96             =cut
97              
98             sub getListingDuration {
99             my $self = shift;
100             return $self->_getDataTypeArray('ListingDuration');
101             }
102              
103              
104              
105              
106             =head2 setVersion()
107              
108             The current version of the feature. Some features (for example, ShippingTermsRequired)
109             do not have version numbers.
110              
111             # Argument: 'xs:int'
112              
113             =cut
114              
115             sub setVersion {
116             my $self = shift;
117             $self->{'Version'} = shift
118             }
119              
120             =head2 getVersion()
121              
122             Calls: GetCategoryFeatures
123             Returned: Conditionally
124             Details: DetailLevel: ReturnAll
125              
126             # Returns: 'xs:int'
127              
128             =cut
129              
130             sub getVersion {
131             my $self = shift;
132             return $self->{'Version'};
133             }
134              
135              
136              
137             ## Attribute and Property lists
138             sub getPropertiesList {
139             my $self = shift;
140             return \@gaProperties;
141             }
142              
143             sub getAttributesList {
144             my $self = shift;
145             return \@gaAttributes;
146             }
147              
148              
149              
150             1;