| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ItemRatingDetailsType
Applicable to sites that support the Detailed Seller Ratings feature. The ItemRatingDetailsType contains detailed seller ratings for a transaction in one area. When buyers leave an overall Feedback rating (positive, neutral, or negative) for a seller, they also can leave ratings in four areas: item as described, communication, shipping time, and charges for shipping and handling. Users retrieve detailed ratings as averages of the ratings left by buyers.
eBay::API::XML::DataType::ItemRatingDetailsType inherits from the eBay::API::XML::BaseDataType class
A detailed seller rating for a transaction, applying to the area in the corresponding RatingDetail field.
Calls: LeaveFeedback RequiredInput: No
# Argument: 'xs:int'
# Returns: 'xs:int'
The area of a specific detailed seller rating for a transaction. When buyers leave an overall Feedback rating (positive, neutral, or negative) for a seller, they also can leave ratings in four areas: item as described, communication, shipping time, and charges for shipping and handling.
Calls: LeaveFeedback RequiredInput: No
# Argument: 'ns:FeedbackRatingDetailCodeType'
# Returns: 'ns:FeedbackRatingDetailCodeType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ItemRatingDetailsType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemRatingDetailsType.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::FeedbackRatingDetailCodeType; my @gaProperties = ( [ 'Rating', 'xs:int', '', '', '' ] , [ 'RatingDetail', 'ns:FeedbackRatingDetailCodeType', '' ,'eBay::API::XML::DataType::Enum::FeedbackRatingDetailCodeType', '' ] ); 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 setRating { my $self = shift; $self->{'Rating'} = shift }
sub getRating { my $self = shift; return $self->{'Rating'}; }
sub setRatingDetail { my $self = shift; $self->{'RatingDetail'} = shift }
sub getRatingDetail { my $self = shift; return $self->{'RatingDetail'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;