eBay::API::XML::DataType::CheckoutCompleteRedirectType - eBay::API::XML::DataType::CheckoutCompleteRedirectType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::CheckoutCompleteRedirectType

DESCRIPTION

Top

Details about the webpage to which to direct users who have completed checkout.

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setName()

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'

getName()

  Calls: GetCart
         SetCart
  Returned: Conditionally

# Returns: 'xs:string'

setURL()

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'

getURL()

  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;