| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::PictureManagerPictureType
A picture in a Picture Manager album.
eBay::API::XML::DataType::PictureManagerPictureType inherits from the eBay::API::XML::BaseDataType class
The date the picture was uploaded to the Picture Manager account.
Calls: SetPictureManagerDetails RequiredInput: Conditionally
# Argument: 'xs:dateTime'
Calls: GetPictureManagerDetails Returned: Conditionally Details: PictureManagerDetailLevel: none, ReturnPicture, ReturnAll
# Returns: 'xs:dateTime'
The type of picture display in Picture Manager.
Calls: SetPictureManagerDetails RequiredInput: Conditionally
# Argument: reference to an array of 'ns:PictureManagerPictureDisplayType'
Calls: GetPictureManagerDetails Returned: Conditionally Details: PictureManagerDetailLevel: none, ReturnPicture, ReturnAll
# Returns: reference to an array of 'ns:PictureManagerPictureDisplayType'
The name of the picture, specified by the user.
Calls: SetPictureManagerDetails RequiredInput: Conditionally
# Argument: 'xs:string'
Calls: GetPictureManagerDetails Returned: Conditionally Details: PictureManagerDetailLevel: none, ReturnPicture, ReturnAll
# Returns: 'xs:string'
The URL that identifies the picture in the album. If a URI has spaces, replace them with %20.
# Argument: 'xs:anyURI'
# Returns: 'xs:anyURI'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::PictureManagerPictureType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. PictureManagerPictureType.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"); use eBay::API::XML::DataType::PictureManagerPictureDisplayType; my @gaProperties = ( [ 'Date', 'xs:dateTime', '', '', '' ] , [ 'DisplayFormat', 'ns:PictureManagerPictureDisplayType', '1' ,'eBay::API::XML::DataType::PictureManagerPictureDisplayType', '1' ] , [ 'Name', 'xs:string', '', '', '' ] , [ 'PictureURL', 'xs:anyURI', '', '', '' ] ); 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 setDate { my $self = shift; $self->{'Date'} = shift }
sub getDate { my $self = shift; return $self->{'Date'}; }
sub setDisplayFormat { my $self = shift; $self->{'DisplayFormat'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getDisplayFormat { my $self = shift; return $self->_getDataTypeArray('DisplayFormat'); }
sub setName { my $self = shift; $self->{'Name'} = shift }
sub getName { my $self = shift; return $self->{'Name'}; }
sub setPictureURL { my $self = shift; $self->{'PictureURL'} = shift }
sub getPictureURL { my $self = shift; return $self->{'PictureURL'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;