| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::CheckoutCompleteRedirectType
Details about the webpage to which to direct users who have completed checkout.
eBay::API::XML::DataType::CheckoutCompleteRedirectType inherits from the eBay::API::XML::BaseDataType class
The name of the third party site (the visible text to display for the link defined in the URL element). This is only returned if it was set via SetCart input.
Calls: SetCart RequiredInput: No
# Argument: 'xs:string'
Calls: GetCart
SetCart
Returned: Conditionally
# Returns: 'xs:string'
The URL of the third party site. This is only returned if it was set via SetCart input.
Calls: SetCart RequiredInput: No
# Argument: 'xs:anyURI'
Calls: GetCart
SetCart
Returned: Conditionally
# Returns: 'xs:anyURI'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::CheckoutCompleteRedirectType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CheckoutCompleteRedirectType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 07/07/2008 17:42 # API Release Number: ... 571 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); my @gaProperties = ( [ '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 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;