eBay::API::XML::DataType::Enum::TokenReturnMethodCodeType - eBay::API::XML::DataType::Enum::TokenReturnMethodCodeType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::TokenReturnMethodCodeType

DESCRIPTION

Top

Indicates how the application wants eBay to handle the user's token after the user signs in.

SYNOPSIS

Top

Enums:

Top

Redirect

Return the token in the HTTP redirect to the application-specified accept URL.

FetchToken

Leave the token at eBay so that the application can get the token through the FetchToken API call (SecretId required).

CustomCode

Reserved for future use


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

package eBay::API::XML::DataType::Enum::TokenReturnMethodCodeType;

use strict;
use warnings;  

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


use constant Redirect => scalar('Redirect');



use constant FetchToken => scalar('FetchToken');



use constant CustomCode => scalar('CustomCode');







1;