eBay::API::XML::DataType::Enum::StringMatchCodeType - eBay::API::XML::DataType::Enum::StringMatchCodeType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::StringMatchCodeType

DESCRIPTION

Top

(in) Indicates the type of string matching to use when a value is submitted in CharityName. If no value is specified, default behavior is "StartsWith." Does not apply to Query.

SYNOPSIS

Top

Enums:

Top

CustomCode

(in) Reserved for internal or future use.

StartsWith

(in) Matches strings that begin with the submitted value. For example, submitting a CharityName value of "heart" matches "Heart of Gold," but not "Open Hearts." Default behavior if no value is specified.

Contains

(in) Matches strings that contain the submitted value. For example, submitting a CharityName value of "heart" matches both "Heart of Gold" and "Open Hearts."


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

package eBay::API::XML::DataType::Enum::StringMatchCodeType;

use strict;
use warnings;  

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


use constant CustomCode => scalar('CustomCode');



use constant StartsWith => scalar('StartsWith');



use constant Contains => scalar('Contains');







1;