| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetPictureManagerOptions
eBay::API::XML::Call::GetPictureManagerOptions inherits from the eBay::API::XML::BaseCall class
A global definition for displaying pictures, with a maximum size.
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.
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; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetPictureManagerOptions.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseCall; our @ISA = ("eBay::API::XML::BaseCall"); use eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsRequestType; use eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType;
sub getApiCallName { return 'GetPictureManagerOptions'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType'; } # # input properties # # # output properties #
sub getPictureType { my $self = shift; return $self->getResponseDataType()->getPictureType(); }
sub getSubscription { my $self = shift; return $self->getResponseDataType()->getSubscription(); } 1;