File Coverage

lib/eBay/API/XML/DataType/CurrencyDetailsType.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::CurrencyDetailsType;
4              
5 1     1   1301 use strict;
  1         2  
  1         33  
6 1     1   4 use warnings;
  1         2  
  1         31  
7              
8             ##########################################################################
9             #
10             # Module: ............... eBay/API/XML
11             # File: ................. CurrencyDetailsType.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::CurrencyDetailsType
21              
22             =head1 DESCRIPTION
23              
24             Details about a currency.
25              
26              
27              
28             =head1 SYNOPSIS
29              
30             =cut
31              
32              
33             =head1 INHERITANCE
34              
35             eBay::API::XML::DataType::CurrencyDetailsType inherits from the L class
36              
37             =cut
38              
39 1     1   48 use eBay::API::XML::BaseDataType;
  0            
  0            
40             our @ISA = ("eBay::API::XML::BaseDataType");
41              
42             use eBay::API::XML::DataType::Enum::CurrencyCodeType;
43              
44              
45             my @gaProperties = ( [ 'Currency', 'ns:CurrencyCodeType', ''
46             ,'eBay::API::XML::DataType::Enum::CurrencyCodeType', '' ]
47             , [ 'Description', 'xs:string', '', '', '' ]
48             );
49             push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()};
50              
51             my @gaAttributes = (
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 setCurrency()
73              
74             Currency abbreviation.

75             Related fields:
76             Item.Currency and Item.StartPrice in AddItem
77             SearchLocationFilter.Currency in GetSearchResults
78              
79             # Argument: 'ns:CurrencyCodeType'
80              
81             =cut
82              
83             sub setCurrency {
84             my $self = shift;
85             $self->{'Currency'} = shift
86             }
87              
88             =head2 getCurrency()
89              
90             Calls: GeteBayDetails
91             Returned: Conditionally
92              
93             # Returns: 'ns:CurrencyCodeType'
94              
95             =cut
96              
97             sub getCurrency {
98             my $self = shift;
99             return $self->{'Currency'};
100             }
101              
102              
103             =head2 setDescription()
104              
105             Full currency name for display purposes.
106              
107             # Argument: 'xs:string'
108              
109             =cut
110              
111             sub setDescription {
112             my $self = shift;
113             $self->{'Description'} = shift
114             }
115              
116             =head2 getDescription()
117              
118             Calls: GeteBayDetails
119             Returned: Conditionally
120              
121             # Returns: 'xs:string'
122              
123             =cut
124              
125             sub getDescription {
126             my $self = shift;
127             return $self->{'Description'};
128             }
129              
130              
131              
132              
133              
134             ## Attribute and Property lists
135             sub getPropertiesList {
136             my $self = shift;
137             return \@gaProperties;
138             }
139              
140             sub getAttributesList {
141             my $self = shift;
142             return \@gaAttributes;
143             }
144              
145              
146              
147             1;