eBay::API::XML::DataType::StoreLogoType - eBay::API::XML::DataType::StoreLogoType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::StoreLogoType

DESCRIPTION

Top

Store logo.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::DataType::StoreLogoType inherits from the eBay::API::XML::BaseDataType class

Subroutines:

Top

setLogoID()

Store logo ID (use GetStoreOptions to get the list of valid logo IDs).

  Calls: SetStore
  RequiredInput: Conditionally

# Argument: 'xs:int'

getLogoID()

  Calls: GetStore
  Returned: Conditionally

  Calls: GetStoreOptions
  Returned: Always

# Returns: 'xs:int'

setName()

Store logo name. Provides a user-friendly name for the logo.

  Calls: SetStore
  RequiredInput: Conditionally

# Argument: 'xs:string'

getName()

  Calls: GetStore
  Returned: Conditionally

  Calls: GetStoreOptions
  Returned: Always

# Returns: 'xs:string'

setURL()

URL of the logo. Must have a .gif or .jpg extention. Specified when you are using a customized logo.

  Calls: SetStore
  RequiredInput: Conditionally

# Argument: 'xs:anyURI'

getURL()

  Calls: GetStore
  Returned: Conditionally

# Returns: 'xs:anyURI'


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::StoreLogoType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. StoreLogoType.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 = ( [ 'LogoID', 'xs:int', '', '', '' ]
	, [ 'Name', 'xs:string', '', '', '' ]
	, [ 'URL', '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 setLogoID {
  my $self = shift;
  $self->{'LogoID'} = shift
}

sub getLogoID {
  my $self = shift;
  return $self->{'LogoID'};
}


sub setName {
  my $self = shift;
  $self->{'Name'} = shift
}

sub getName {
  my $self = shift;
  return $self->{'Name'};
}


sub setURL {
  my $self = shift;
  $self->{'URL'} = shift
}

sub getURL {
  my $self = shift;
  return $self->{'URL'};
}





##  Attribute and Property lists
sub getPropertiesList {
   my $self = shift;
   return \@gaProperties;
}

sub getAttributesList {
   my $self = shift;
   return \@gaAttributes;
}



1;