| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::ValidateTestUserRegistration::ValidateTestUserRegistrationRequestType
Requests to enable a test user to sell items in the Sandbox environment.
eBay::API::XML::Call::ValidateTestUserRegistration::ValidateTestUserRegistrationRequestType inherits from the eBay::API::XML::RequestDataType class
Value for the feedback score of a user. If no value is passed in the request, or if the value is zero, the feedback score is unchanged. This element is not intended for regularly testing feedback because the feedback value can change after the request.
RequiredInput: No # Argument: 'xs:int'
# Returns: 'xs:int'
Value for the date and time that a user's registration begins.
RequiredInput: No # Argument: 'xs:dateTime'
# Returns: 'xs:dateTime'
Indicates if a user subscribes to Seller's Assistant. You cannot request to subscribe a user to both Seller's Assistant and Seller's Assistant Pro. You cannot request to unsubscribe a user.
RequiredInput: No # Argument: 'xs:boolean'
# Returns: 'xs:boolean'
Indicates if a user subscribes to Seller's Assistant Pro. You cannot request to subscribe a user to both Seller's Assistant and Seller's Assistant Pro. You cannot request to unsubscribe a user.
RequiredInput: No # Argument: 'xs:boolean'
# Returns: 'xs:boolean'
Indicates if a user subscribes to Selling Manager. You cannot request to subscribe a user to both Selling Manager and Selling Manager Pro. You cannot request to unsubscribe a user.
RequiredInput: No # Argument: 'xs:boolean'
# Returns: 'xs:boolean'
Indicates if a user subscribes to Selling Manager Pro. You cannot request to subscribe a user to both Selling Manager and Selling Manager Pro. You cannot request to unsubscribe a user.
RequiredInput: No # Argument: 'xs:boolean'
# Returns: 'xs:boolean'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::ValidateTestUserRegistration::ValidateTestUserRegistrationRequestType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ValidateTestUserRegistrationRequestType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::RequestDataType; our @ISA = ("eBay::API::XML::RequestDataType"); my @gaProperties = ( [ 'FeedbackScore', 'xs:int', '', '', '' ] , [ 'RegistrationDate', 'xs:dateTime', '', '', '' ] , [ 'SubscribeSA', 'xs:boolean', '', '', '' ] , [ 'SubscribeSAPro', 'xs:boolean', '', '', '' ] , [ 'SubscribeSM', 'xs:boolean', '', '', '' ] , [ 'SubscribeSMPro', 'xs:boolean', '', '', '' ] ); push @gaProperties, @{eBay::API::XML::RequestDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::RequestDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setFeedbackScore { my $self = shift; $self->{'FeedbackScore'} = shift }
sub getFeedbackScore { my $self = shift; return $self->{'FeedbackScore'}; }
sub setRegistrationDate { my $self = shift; $self->{'RegistrationDate'} = shift }
sub getRegistrationDate { my $self = shift; return $self->{'RegistrationDate'}; }
sub setSubscribeSA { my $self = shift; $self->{'SubscribeSA'} = shift }
sub isSubscribeSA { my $self = shift; return $self->{'SubscribeSA'}; }
sub setSubscribeSAPro { my $self = shift; $self->{'SubscribeSAPro'} = shift }
sub isSubscribeSAPro { my $self = shift; return $self->{'SubscribeSAPro'}; }
sub setSubscribeSM { my $self = shift; $self->{'SubscribeSM'} = shift }
sub isSubscribeSM { my $self = shift; return $self->{'SubscribeSM'}; }
sub setSubscribeSMPro { my $self = shift; $self->{'SubscribeSMPro'} = shift }
sub isSubscribeSMPro { my $self = shift; return $self->{'SubscribeSMPro'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;