| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::BuyerSatisfactionDashboardType
Container for fields related to buyer satisfaction.
eBay::API::XML::DataType::BuyerSatisfactionDashboardType inherits from the eBay::API::XML::BaseDataType class
A message to help you understand your buyer satisfaction status.
# Argument: reference to an array of 'ns:SellerDashboardAlertType'
Calls: GetSellerDashboard Returned: Conditionally
# Returns: reference to an array of 'ns:SellerDashboardAlertType'
Your buyer satisfaction rating (as a qualitative summary). To determine this rating, eBay considers your detailed seller ratings, your overall feedback rating, and whatever buyer protection claims may exist on your account. eBay uses the buyer satisfaction rating to see if you are eligible for certain rewards or need additional guidance to help you give better service.
# Argument: 'ns:BuyerSatisfactionStatusCodeType'
Calls: GetSellerDashboard Returned: Conditionally
# Returns: 'ns:BuyerSatisfactionStatusCodeType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::BuyerSatisfactionDashboardType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BuyerSatisfactionDashboardType.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::SellerDashboardAlertType; use eBay::API::XML::DataType::Enum::BuyerSatisfactionStatusCodeType; my @gaProperties = ( [ 'Alert', 'ns:SellerDashboardAlertType', '1' ,'eBay::API::XML::DataType::SellerDashboardAlertType', '1' ] , [ 'Status', 'ns:BuyerSatisfactionStatusCodeType', '' ,'eBay::API::XML::DataType::Enum::BuyerSatisfactionStatusCodeType', '' ] ); 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 setAlert { my $self = shift; $self->{'Alert'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getAlert { my $self = shift; return $self->_getDataTypeArray('Alert'); }
sub setStatus { my $self = shift; $self->{'Status'} = shift }
sub getStatus { my $self = shift; return $self->{'Status'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;