eBay::API::XML::Call::GetChallengeToken::GetChallengeTokenResponseType - eBay::API::XML::Call::GetChallengeToken::GetChallengeTokenResponseType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::GetChallengeToken::GetChallengeTokenResponseType

DESCRIPTION

Top

Response to GetChallengeToken request.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::GetChallengeToken::GetChallengeTokenResponseType inherits from the eBay::API::XML::ResponseDataType class

Subroutines:

Top

setAudioChallengeURL()

The URL of the audio clip your application should provide for sight-impaired users. The audio clip corresponds to the image.

# Argument: 'xs:string'

getAudioChallengeURL()

  Returned: Always
#    Returns: 'xs:string'

setChallengeToken()

Botblock token that is used to validate that the user is a human and not a bot.

# Argument: 'xs:string'

getChallengeToken()

  Returned: Always
#    Returns: 'xs:string'

setImageChallengeURL()

The URL of the image your application should display to the user for a botblock challenge.

# Argument: 'xs:string'

getImageChallengeURL()

  Returned: Always
#    Returns: 'xs:string'


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

package eBay::API::XML::Call::GetChallengeToken::GetChallengeTokenResponseType;

use strict;
use warnings;  

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

use eBay::API::XML::ResponseDataType;
our @ISA = ("eBay::API::XML::ResponseDataType");



my @gaProperties = ( [ 'AudioChallengeURL', 'xs:string', '', '', '' ]
	, [ 'ChallengeToken', 'xs:string', '', '', '' ]
	, [ 'ImageChallengeURL', 'xs:string', '', '', '' ]
                    );
push @gaProperties, @{eBay::API::XML::ResponseDataType::getPropertiesList()};

my @gaAttributes = ( 
                    );
push @gaAttributes, @{eBay::API::XML::ResponseDataType::getAttributesList()};

sub new {
  my $classname = shift;
  my %args = @_;
  my $self = $classname->SUPER::new(%args);
  return $self;
}

sub isScalar {
   return 0; 
}



sub setAudioChallengeURL {
  my $self = shift;
  $self->{'AudioChallengeURL'} = shift
}

sub getAudioChallengeURL {
  my $self = shift;
  return $self->{'AudioChallengeURL'};
}


sub setChallengeToken {
  my $self = shift;
  $self->{'ChallengeToken'} = shift
}

sub getChallengeToken {
  my $self = shift;
  return $self->{'ChallengeToken'};
}


sub setImageChallengeURL {
  my $self = shift;
  $self->{'ImageChallengeURL'} = shift
}

sub getImageChallengeURL {
  my $self = shift;
  return $self->{'ImageChallengeURL'};
}





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

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



1;