eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType - eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType

DESCRIPTION

Top

Request for a SessionID, which is a unique identifier for authenticating data entry during the process that creates a user token.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType inherits from the eBay::API::XML::RequestDataType class

Subroutines:

Top

setRuName()

The runame provided must match the one that will be used for validation during the creation of a user token.

  RequiredInput: Yes
#    Argument: 'xs:string'

getRuName()

# Returns: 'xs:string'


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

package eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. GetSessionIDRequestType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  

use eBay::API::XML::RequestDataType;
our @ISA = ("eBay::API::XML::RequestDataType");



my @gaProperties = ( [ 'RuName', 'xs:string', '', '', '' ]
                    );
push @gaProperties, @{eBay::API::XML::RequestDataType::getPropertiesList()};

my @gaAttributes = ( 
                    );
push @gaAttributes, @{eBay::API::XML::RequestDataType::getAttributesList()};

sub new {
  my $classname = shift;
  my %args = @_;
  my $self = $classname->SUPER::new(%args);
  return $self;
}

sub isScalar {
   return 0; 
}



sub setRuName {
  my $self = shift;
  $self->{'RuName'} = shift
}

sub getRuName {
  my $self = shift;
  return $self->{'RuName'};
}





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

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



1;