| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ListingTipType
A tip on improving a listing's details. Tips are returned from the Listing Analyzer engine.
eBay::API::XML::DataType::ListingTipType inherits from the eBay::API::XML::BaseDataType class
The item field that is associated with the tip.
# Argument: 'ns:ListingTipFieldType'
Calls: GetItemRecommendations Returned: Conditionally
# Returns: 'ns:ListingTipFieldType'
Identifier for the tip. Primarily for internal use. This value may change over time.
# Argument: 'xs:string'
Calls: GetItemRecommendations Returned: Conditionally
# Returns: 'xs:string'
The tip's message content.
# Argument: 'ns:ListingTipMessageType'
Calls: GetItemRecommendations Returned: Conditionally
# Returns: 'ns:ListingTipMessageType'
The rank of the tip. All tips are ranked by importance. Ranking varies for each site. The rank is always greater than 0.
# Argument: 'xs:int'
Calls: GetItemRecommendations Returned: Conditionally
# Returns: 'xs:int'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ListingTipType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ListingTipType.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::ListingTipFieldType; use eBay::API::XML::DataType::ListingTipMessageType; my @gaProperties = ( [ 'Field', 'ns:ListingTipFieldType', '' ,'eBay::API::XML::DataType::ListingTipFieldType', '1' ] , [ 'ListingTipID', 'xs:string', '', '', '' ] , [ 'Message', 'ns:ListingTipMessageType', '' ,'eBay::API::XML::DataType::ListingTipMessageType', '1' ] , [ 'Priority', '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 setField { my $self = shift; $self->{'Field'} = shift }
sub getField { my $self = shift; return $self->_getDataTypeInstance( 'Field' ,'eBay::API::XML::DataType::ListingTipFieldType'); }
sub setListingTipID { my $self = shift; $self->{'ListingTipID'} = shift }
sub getListingTipID { my $self = shift; return $self->{'ListingTipID'}; }
sub setMessage { my $self = shift; $self->{'Message'} = shift }
sub getMessage { my $self = shift; return $self->_getDataTypeInstance( 'Message' ,'eBay::API::XML::DataType::ListingTipMessageType'); }
sub setPriority { my $self = shift; $self->{'Priority'} = shift }
sub getPriority { my $self = shift; return $self->{'Priority'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;