| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::StoreCustomListingHeaderLinkType
Custom listing header link.
eBay::API::XML::DataType::StoreCustomListingHeaderLinkType inherits from the eBay::API::XML::BaseDataType class
Link ID for the listing header link. The ID is used when the link is a custom category or for a custom page, and it is not needed when the LinkType property is "AboutMe" or "None".
Calls: SetStore RequiredInput: Conditionally
# Argument: 'xs:int'
Calls: GetStore Returned: Conditionally
# Returns: 'xs:int'
Type of link to include in the custom listing header.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreCustomListingHeaderLinkCodeType'
Calls: GetStore Returned: Conditionally
# Returns: 'ns:StoreCustomListingHeaderLinkCodeType'
Order in which to show the custom listing header link.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'xs:int'
Calls: GetStore Returned: Conditionally
# Returns: 'xs:int'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::StoreCustomListingHeaderLinkType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreCustomListingHeaderLinkType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); use eBay::API::XML::DataType::Enum::StoreCustomListingHeaderLinkCodeType; my @gaProperties = ( [ 'LinkID', 'xs:int', '', '', '' ] , [ 'LinkType', 'ns:StoreCustomListingHeaderLinkCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreCustomListingHeaderLinkCodeType', '' ] , [ 'Order', 'xs:int', '', '', '' ] ); push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setLinkID { my $self = shift; $self->{'LinkID'} = shift }
sub getLinkID { my $self = shift; return $self->{'LinkID'}; }
sub setLinkType { my $self = shift; $self->{'LinkType'} = shift }
sub getLinkType { my $self = shift; return $self->{'LinkType'}; }
sub setOrder { my $self = shift; $self->{'Order'} = shift }
sub getOrder { my $self = shift; return $self->{'Order'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;