| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetAttributesXSL::GetAttributesXSLRequestType
Retrieves the Item Specifics SYI XSL stylesheet. Apply the stylesheet to the XML returned from a call to GetAttributesCS or GetProductSellingPages to render a form like the Item Specifics portion of eBay's Title and Description page. See the eBay Web Services Guide for an overview of Item Specifics and information on working with the XSL.
eBay::API::XML::Call::GetAttributesXSL::GetAttributesXSLRequestType inherits from the eBay::API::XML::RequestDataType class
The name of the XSL file to retrieve. If not specified, the call returns the latest versions of all available XSL files. FileName is an optional input. Valid values<br> <br> syi_attributes.xsl
RequiredInput: No # Argument: 'xs:string'
# Returns: 'xs:string'
The desired version of the XSL file. Required if FileName is specified. If not specified, the call returns the latest version of the file. (This is not a filter for retrieving changes to the XSL file.)
RequiredInput: Conditionally # Argument: 'xs:string'
# Returns: 'xs:string'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetAttributesXSL::GetAttributesXSLRequestType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetAttributesXSLRequestType.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 = ( [ 'FileName', 'xs:string', '', '', '' ] , [ 'FileVersion', 'xs:string', '', '', '' ] ); 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 setFileName { my $self = shift; $self->{'FileName'} = shift }
sub getFileName { my $self = shift; return $self->{'FileName'}; }
sub setFileVersion { my $self = shift; $self->{'FileVersion'} = shift }
sub getFileVersion { my $self = shift; return $self->{'FileVersion'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;