| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType
Returns a list of Picture Manager options and allowed values.
eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType inherits from the eBay::API::XML::ResponseDataType class
A global definition for displaying pictures, with a maximum size.
# Argument: reference to an array of 'ns:PictureManagerPictureDisplayType'
Returned: Always
# Returns: reference to an array
of 'ns:PictureManagerPictureDisplayType'
A type of Picture Manager subscription, with a subscription level, fee, and allowed storage size.
# Argument: reference to an array of 'ns:PictureManagerSubscriptionType'
Returned: Always
# Returns: reference to an array
of 'ns:PictureManagerSubscriptionType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetPictureManagerOptionsResponseType.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::PictureManagerPictureDisplayType; use eBay::API::XML::DataType::PictureManagerSubscriptionType; my @gaProperties = ( [ 'PictureType', 'ns:PictureManagerPictureDisplayType', '1' ,'eBay::API::XML::DataType::PictureManagerPictureDisplayType', '1' ] , [ 'Subscription', 'ns:PictureManagerSubscriptionType', '1' ,'eBay::API::XML::DataType::PictureManagerSubscriptionType', '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 setPictureType { my $self = shift; $self->{'PictureType'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getPictureType { my $self = shift; return $self->_getDataTypeArray('PictureType'); }
sub setSubscription { my $self = shift; $self->{'Subscription'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getSubscription { my $self = shift; return $self->_getDataTypeArray('Subscription'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;