eBay::API::XML::Call::RespondToBestOffer::RespondToBestOfferResponseType - eBay::API::XML::Call::RespondToBestOffer::RespondToBestOfferResponseType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::RespondToBestOffer::RespondToBestOfferResponseType

DESCRIPTION

Top

Contains a list of BestOffers that were either accepted or declined.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::RespondToBestOffer::RespondToBestOfferResponseType inherits from the eBay::API::XML::ResponseDataType class

Subroutines:

Top

setRespondToBestOffer()

A list of BestOffers that were either accepted or declined.

# Argument: 'ns:BestOfferArrayType'

getRespondToBestOffer()

  Returned: Always
#    Returns: 'ns:BestOfferArrayType'


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

package eBay::API::XML::Call::RespondToBestOffer::RespondToBestOfferResponseType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. RespondToBestOfferResponseType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  

use eBay::API::XML::ResponseDataType;
our @ISA = ("eBay::API::XML::ResponseDataType");

use eBay::API::XML::DataType::BestOfferArrayType;


my @gaProperties = ( [ 'RespondToBestOffer', 'ns:BestOfferArrayType', ''
	     ,'eBay::API::XML::DataType::BestOfferArrayType', '1' ]
                    );
push @gaProperties, @{eBay::API::XML::ResponseDataType::getPropertiesList()};

my @gaAttributes = ( 
                    );
push @gaAttributes, @{eBay::API::XML::ResponseDataType::getAttributesList()};

sub new {
  my $classname = shift;
  my %args = @_;
  my $self = $classname->SUPER::new(%args);
  return $self;
}

sub isScalar {
   return 0; 
}



sub setRespondToBestOffer {
  my $self = shift;
  $self->{'RespondToBestOffer'} = shift
}

sub getRespondToBestOffer {
  my $self = shift;
  return $self->_getDataTypeInstance( 'RespondToBestOffer'
		,'eBay::API::XML::DataType::BestOfferArrayType');
}





##  Attribute and Property lists
sub getPropertiesList {
   my $self = shift;
   return \@gaProperties;
}

sub getAttributesList {
   my $self = shift;
   return \@gaAttributes;
}



1;