eBay::API::XML::DataType::AverageRatingDetailsType - eBay::API::XML::DataType::AverageRatingDetailsType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::AverageRatingDetailsType

DESCRIPTION

Top

Applicable to sites that support the Detailed Seller Ratings feature. The AverageRatingDetailsType contains the average detailed seller ratings in an 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.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::DataType::AverageRatingDetailsType inherits from the eBay::API::XML::BaseDataType class

Subroutines:

Top

setRating()

An average detailed seller rating applying to the area in the corresponding RatingDetail field.

# Argument: 'xs:double'

getRating()

  Calls: GetFeedback
  Returned: Conditionally
  Details: DetailLevel: none, ReturnAll

# Returns: 'xs:double'

setRatingCount()

The number of detailed seller ratings in the area in the corresponding RatingDetail field.

# Argument: 'xs:int'

getRatingCount()

  Calls: GetFeedback
  Returned: Conditionally
  Details: DetailLevel: none, ReturnAll

# Returns: 'xs:int'

setRatingDetail()

The area of a specific average detailed seller rating. Users retrieve detailed ratings as averages of the ratings left by buyers. 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.

# Argument: 'ns:FeedbackRatingDetailCodeType'

getRatingDetail()

  Calls: GetFeedback
  Returned: Conditionally
  Details: DetailLevel: none, ReturnAll

# Returns: 'ns:FeedbackRatingDetailCodeType'


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::AverageRatingDetailsType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. AverageRatingDetailsType.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:double', '', '', '' ]
	, [ 'RatingCount', '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 setRatingCount {
  my $self = shift;
  $self->{'RatingCount'} = shift
}

sub getRatingCount {
  my $self = shift;
  return $self->{'RatingCount'};
}


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;