| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ItemSpecificDetailsType
Details about custom Item Specifics validation rules.
eBay::API::XML::DataType::ItemSpecificDetailsType inherits from the eBay::API::XML::BaseDataType class
The maximum number of characters the site supports per custom Item Specific name.<br> <br> Related fields:<br> Item.ItemSpecifics in AddItem<br> ItemSpecifics in GetCategorySpecifics<br> ItemSpecifics in GetItemRecommendations<br>
# Argument: 'xs:int'
Calls: GeteBayDetails Returned: Conditionally
# Returns: 'xs:int'
The maximum number of characters the site supports per custom Item Specific value.<br> <br> Related fields:<br> Item.ItemSpecifics in AddItem<br> ItemSpecifics in GetCategorySpecifics<br> ItemSpecifics in GetItemRecommendations<br>
# Argument: 'xs:int'
Calls: GeteBayDetails Returned: Conditionally
# Returns: 'xs:int'
The maximum number of custom Item Specifics allowed when you list an item. Also the maximum returned per category in GetCategorySpecifics and GetItemRecommendations. <br> <br> Related fields:<br> Item.ItemSpecifics in AddItem<br> ItemSpecifics in GetCategorySpecifics<br> ItemSpecifics in GetItemRecommendations<br>
# Argument: 'xs:int'
Calls: GeteBayDetails Returned: Conditionally
# Returns: 'xs:int'
The maximum number of values returned for each custom Item Specific in GetCategorySpecifics and GetItemRecommendations.<br> <br> Related fields:<br> ItemSpecifics in GetCategorySpecifics<br> ItemSpecifics in GetItemRecommendations<br>
# Argument: 'xs:int'
Calls: GeteBayDetails Returned: Conditionally
# Returns: 'xs:int'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ItemSpecificDetailsType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemSpecificDetailsType.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 = ( [ 'MaxCharactersPerName', 'xs:int', '', '', '' ] , [ 'MaxCharactersPerValue', 'xs:int', '', '', '' ] , [ 'MaxItemSpecificsPerItem', 'xs:int', '', '', '' ] , [ 'MaxValuesPerName', 'xs:int', '', '', '' ] ); 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 setMaxCharactersPerName { my $self = shift; $self->{'MaxCharactersPerName'} = shift }
sub getMaxCharactersPerName { my $self = shift; return $self->{'MaxCharactersPerName'}; }
sub setMaxCharactersPerValue { my $self = shift; $self->{'MaxCharactersPerValue'} = shift }
sub getMaxCharactersPerValue { my $self = shift; return $self->{'MaxCharactersPerValue'}; }
sub setMaxItemSpecificsPerItem { my $self = shift; $self->{'MaxItemSpecificsPerItem'} = shift }
sub getMaxItemSpecificsPerItem { my $self = shift; return $self->{'MaxItemSpecificsPerItem'}; }
sub setMaxValuesPerName { my $self = shift; $self->{'MaxValuesPerName'} = shift }
sub getMaxValuesPerName { my $self = shift; return $self->{'MaxValuesPerName'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;