| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetAttributesXSL::GetAttributesXSLResponseType
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 Developer's Guide for an overview of Item Specifics and information on working with the XSL.
eBay::API::XML::Call::GetAttributesXSL::GetAttributesXSLResponseType inherits from the eBay::API::XML::ResponseDataType class
Child elements contain data related to one XSL file. Multiple XSLFile objects can be returned. However, currently only one is returned.
# Argument: reference to an array of 'ns:XSLFileType'
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::GetAttributesXSL::GetAttributesXSLResponseType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetAttributesXSLResponseType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::ResponseDataType; our @ISA = ("eBay::API::XML::ResponseDataType"); use eBay::API::XML::DataType::XSLFileType; my @gaProperties = ( [ 'XSLFile', 'ns:XSLFileType', '1' ,'eBay::API::XML::DataType::XSLFileType', '1' ] ); push @gaProperties, @{eBay::API::XML::ResponseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::ResponseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setXSLFile { my $self = shift; $self->{'XSLFile'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getXSLFile { my $self = shift; return $self->_getDataTypeArray('XSLFile'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;