eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType - eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType

DESCRIPTION

Top

Returns a list of Picture Manager options and allowed values.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::GetPictureManagerOptions::GetPictureManagerOptionsResponseType inherits from the eBay::API::XML::ResponseDataType class

Subroutines:

Top

setPictureType()

A global definition for displaying pictures, with a maximum size.

# Argument: reference to an array of 'ns:PictureManagerPictureDisplayType'

getPictureType()

  Returned: Always
#    Returns: reference to an array  
                      of 'ns:PictureManagerPictureDisplayType'

setSubscription()

A type of Picture Manager subscription, with a subscription level, fee, and allowed storage size.

# Argument: reference to an array of 'ns:PictureManagerSubscriptionType'

getSubscription()

  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;