| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetPromotionalSaleDetails::GetPromotionalSaleDetailsRequestType
Used to obtain information about promotional sales. If you do not specify a PromotionalSaleID, then GetPromotionalSaleDetails returns all promotional sales for the seller making the call. Promotional sales apply to single and multi-quantity Store Inventory format, regular fixed-price format, auction, and auction/BIN formats. Auction and auction/BIN format listings can be added free shipping sales only.
eBay::API::XML::Call::GetPromotionalSaleDetails::GetPromotionalSaleDetailsRequestType inherits from the eBay::API::XML::RequestDataType class
The ID of the promotional sale about which you want information. If you do not specify this field, then GetPromotionalSaleDetails returns all promotional sales for the seller making the call.
RequiredInput: No # Argument: 'xs:long'
# Returns: 'xs:long'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetPromotionalSaleDetails::GetPromotionalSaleDetailsRequestType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetPromotionalSaleDetailsRequestType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::RequestDataType; our @ISA = ("eBay::API::XML::RequestDataType"); my @gaProperties = ( [ 'PromotionalSaleID', 'xs:long', '', '', '' ] ); push @gaProperties, @{eBay::API::XML::RequestDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::RequestDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setPromotionalSaleID { my $self = shift; $self->{'PromotionalSaleID'} = shift }
sub getPromotionalSaleID { my $self = shift; return $self->{'PromotionalSaleID'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;