| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::SetReturnURL
eBay::API::XML::Call::SetReturnURL inherits from the eBay::API::XML::BaseCall class
Specifies whether the authentication entry is being added, deleted, or modified.
SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AuthNAuth Title: Authentication & Authorization
RequiredInput: Yes # Argument: 'ns:ModifyActionCodeType'
Sets an application display name for the eBay sign-in page. Need not be set with every call. Optional.
SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AuthNAuth Title: Authentication & Authorization
RequiredInput: No # Argument: 'xs:string'
The authentication preferences and other data that you are adding, deleting, or modifying.
SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AuthNAuth Title: Authentication & Authorization
RequiredInput: Yes # Argument: 'ns:AuthenticationEntryType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::SetReturnURL; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SetReturnURL.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 07/07/2008 17:42 # API Release Number: ... 571 # ##########################################################################
use eBay::API::XML::BaseCall; our @ISA = ("eBay::API::XML::BaseCall"); use eBay::API::XML::Call::SetReturnURL::SetReturnURLRequestType; use eBay::API::XML::Call::SetReturnURL::SetReturnURLResponseType;
sub getApiCallName { return 'SetReturnURL'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::SetReturnURL::SetReturnURLRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::SetReturnURL::SetReturnURLResponseType'; } # # input properties #
sub setAction { my $self = shift; my $sAction = shift; $self->getRequestDataType()->setAction($sAction); }
sub setApplicationDisplayName { my $self = shift; my $sApplicationDisplayName = shift; $self->getRequestDataType()->setApplicationDisplayName($sApplicationDisplayName); }
sub setAuthenticationEntry { my $self = shift; my $pAuthenticationEntry = shift; $self->getRequestDataType()->setAuthenticationEntry($pAuthenticationEntry); } # # output properties # 1;