eBay::API::XML::DataType::ProductFinderConstraintType - eBay::API::XML::DataType::ProductFinderConstraintType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::ProductFinderConstraintType

DESCRIPTION

Top

An attribute (constraint) that was specified in a search request that was based on a product finder query. Used to help you map each query in a batch request to the corresponding search result in the response.

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setDisplayName()

The search attribute name (e.g., Manufacturer).

# Argument: 'xs:string'

getDisplayName()

  Calls: GetProductSearchResults
  Returned: Conditionally

# Returns: 'xs:string'

setDisplayValue()

The search attribute value the user specified in the query (e.g., the actual name the user chose for the manufacturer).

# Argument: 'xs:string'

getDisplayValue()

  Calls: GetProductSearchResults
  Returned: Conditionally

# Returns: 'xs:string'


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

package eBay::API::XML::DataType::ProductFinderConstraintType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ProductFinderConstraintType.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");



my @gaProperties = ( [ 'DisplayName', 'xs:string', '', '', '' ]
	, [ 'DisplayValue', 'xs:string', '', '', '' ]
                    );
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 setDisplayName {
  my $self = shift;
  $self->{'DisplayName'} = shift
}

sub getDisplayName {
  my $self = shift;
  return $self->{'DisplayName'};
}


sub setDisplayValue {
  my $self = shift;
  $self->{'DisplayValue'} = shift
}

sub getDisplayValue {
  my $self = shift;
  return $self->{'DisplayValue'};
}





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

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



1;