eBay::API::XML::Call::GetProductFinderXSL - eBay::API::XML::Call::GetProductFinderXSL documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::Call::GetProductFinderXSL

DESCRIPTION

Top

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::GetProductFinderXSL inherits from the eBay::API::XML::BaseCall class

Subroutines:

Top

setFileName()

The name of the XSL file to retrieve. If not specified, the call returns the latest versions of all available XSL files. Currently, this call only retrieves the product_finder.xsl file. FileName is an optional input.

  RequiredInput: No
#    Argument: 'xs:string'

setFileVersion()

The desired version of the XSL file. Required if FileName is specified. If not specified, the call returns the latest versions of all available XSL files that could be returned by the call. (Currently, this call only retrieves the product_finder.xsl file.) This is not a filter for retrieving changes to the XSL file.

  RequiredInput: No
#    Argument: 'xs:string'

getXSLFile()

Child elements specify data related to one XSL file. In theory, multiple XSLFile objects can be returned. Currently, this call only retrieves the product_finder.xsl file.

  Returned: Always
  Details: DetailLevel: none, ReturnAll
#    Returns: reference to an array  
                      of 'ns:XSLFileType'


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::Call::GetProductFinderXSL;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. GetProductFinderXSL.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  

use eBay::API::XML::BaseCall;
our @ISA = ("eBay::API::XML::BaseCall");

use eBay::API::XML::Call::GetProductFinderXSL::GetProductFinderXSLRequestType;
use eBay::API::XML::Call::GetProductFinderXSL::GetProductFinderXSLResponseType;


sub getApiCallName {
   return 'GetProductFinderXSL';
}
sub getRequestDataTypeFullPackage {
   return 'eBay::API::XML::Call::GetProductFinderXSL::GetProductFinderXSLRequestType';
}
sub getResponseDataTypeFullPackage {
   return 'eBay::API::XML::Call::GetProductFinderXSL::GetProductFinderXSLResponseType';
}

#
# input properties
#

       
sub setFileName {
   my $self   = shift;
   my $sFileName = shift;
   $self->getRequestDataType()->setFileName($sFileName);
}

       
sub setFileVersion {
   my $self   = shift;
   my $sFileVersion = shift;
   $self->getRequestDataType()->setFileVersion($sFileVersion);
}



#
# output properties
#

       
sub getXSLFile {
   my $self = shift;
   return $self->getResponseDataType()->getXSLFile();
}





1;