eBay::API::XML::DataType::UserIdPasswordType - eBay::API::XML::DataType::UserIdPasswordType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::UserIdPasswordType

DESCRIPTION

Top

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setAppId()

The application ID that is unique to each application you (or your company) has registered with the eBay Developers Program. If you are executing a call in the Sandbox, this is the "AppId" value that eBay issued to you when you received your Sandbox keys. If you are executing a call in Production, this is the "AppId" value that eBay issued to you when you received your Production keys.

  Calls: FetchToken
  RequiredInput: Yes

# Argument: 'xs:string'

getAppId()

# Returns: 'xs:string'

setAuthCert()

Authentication certificate that authenticates the application when making API calls. If you are executing a call in the Sandbox, this is the "CertId" value that eBay issued to you when you received your Sandbox keys. If you are executing a call in Production, this is the "CertId" value that eBay issued to you when you received your Production keys. This is unrelated to auth tokens.

  Calls: FetchToken
  RequiredInput: Yes

# Argument: 'xs:string'

getAuthCert()

# Returns: 'xs:string'

setDevId()

The unique developer ID that the eBay Developers Program issued to you (or your company). If you are executing a call in the Sandbox, this is the "DevId" value that eBay issued to you when you received your Sandbox keys. Typically, you receive your Sandbox keys when you register as a new developer. If you are executing a call in Production, this is the "DevId" value that eBay issued to you when you received your Production keys. Typically, you receive your Production keys when you certify an application.

  Calls: FetchToken
  RequiredInput: Yes

# Argument: 'xs:string'

getDevId()

# Returns: 'xs:string'

setPassword()

Password for the user specified in Username.

# Argument: 'xs:string'

getPassword()

# Returns: 'xs:string'

setUsername()

eBay user ID (i.e., eBay.com Web site login name) for the user the application is retrieving a token for. This is typically the application's end-user (not the developer).

MaxLength: 64

  Calls: FetchToken
  RequiredInput: Yes

# Argument: 'xs:string'

getUsername()

# Returns: 'xs:string'


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

package eBay::API::XML::DataType::UserIdPasswordType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. UserIdPasswordType.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 = ( [ 'AppId', 'xs:string', '', '', '' ]
	, [ 'AuthCert', 'xs:string', '', '', '' ]
	, [ 'DevId', 'xs:string', '', '', '' ]
	, [ 'Password', 'xs:string', '', '', '' ]
	, [ 'Username', 'xs:string', '', '', '' ]
                    );
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 setAppId {
  my $self = shift;
  $self->{'AppId'} = shift
}

sub getAppId {
  my $self = shift;
  return $self->{'AppId'};
}


sub setAuthCert {
  my $self = shift;
  $self->{'AuthCert'} = shift
}

sub getAuthCert {
  my $self = shift;
  return $self->{'AuthCert'};
}


sub setDevId {
  my $self = shift;
  $self->{'DevId'} = shift
}

sub getDevId {
  my $self = shift;
  return $self->{'DevId'};
}


sub setPassword {
  my $self = shift;
  $self->{'Password'} = shift
}

sub getPassword {
  my $self = shift;
  return $self->{'Password'};
}


sub setUsername {
  my $self = shift;
  $self->{'Username'} = shift
}

sub getUsername {
  my $self = shift;
  return $self->{'Username'};
}





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

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



1;