| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ReminderCustomizationType
Specifies how to return certain reminder types from the user's My eBay account.
eBay::API::XML::DataType::ReminderCustomizationType inherits from the eBay::API::XML::BaseDataType class
The length of time the reminder has existed in the user's My eBay account, in days. Valid values are 1-60.
Calls: GetMyeBayReminders RequiredInput: No
# Argument: 'xs:int'
# Returns: 'xs:int'
Whether to include information about this type of reminder in the response. When true, the container is returned with default input parameters.
Calls: GetMyeBayReminders RequiredInput: No
# Argument: 'xs:boolean'
# Returns: 'xs:boolean'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ReminderCustomizationType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ReminderCustomizationType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); my @gaProperties = ( [ 'DurationInDays', 'xs:int', '', '', '' ] , [ 'Include', 'xs:boolean', '', '', '' ] ); 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 setDurationInDays { my $self = shift; $self->{'DurationInDays'} = shift }
sub getDurationInDays { my $self = shift; return $self->{'DurationInDays'}; }
sub setInclude { my $self = shift; $self->{'Include'} = shift }
sub isInclude { my $self = shift; return $self->{'Include'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;