| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ItemPolicyViolationType
Specifies the details of policy violations if the item was administratively canceled. The details are the policy ID and the policy text.
eBay::API::XML::DataType::ItemPolicyViolationType inherits from the eBay::API::XML::BaseDataType class
Policy ID of the violated policy which resulted in item being administratively canceled.
# Argument: 'xs:long'
Calls: GetSellerList
Returned: Conditionally
Details: DetailLevel: ItemReturnDescription, ReturnAll
GranularityLevel: Fine
Calls: GetItem
Returned: Conditionally
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll
# Returns: 'xs:long'
Brief information of the violated policy which resulted in item being administratively canceled.
# Argument: 'xs:string'
Calls: GetSellerList
Returned: Conditionally
Details: DetailLevel: ItemReturnDescription, ReturnAll
GranularityLevel: Fine
Calls: GetItem
Returned: Conditionally
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll
# Returns: 'xs:string'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ItemPolicyViolationType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemPolicyViolationType.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 = ( [ 'PolicyID', 'xs:long', '', '', '' ] , [ 'PolicyText', '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 setPolicyID { my $self = shift; $self->{'PolicyID'} = shift }
sub getPolicyID { my $self = shift; return $self->{'PolicyID'}; }
sub setPolicyText { my $self = shift; $self->{'PolicyText'} = shift }
sub getPolicyText { my $self = shift; return $self->{'PolicyText'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;