| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::SchedulingInfoType
Contains information for scheduling limits for the user.
eBay::API::XML::DataType::SchedulingInfoType inherits from the eBay::API::XML::BaseDataType class
Maximum number of Items that a user may schedule.
# Argument: 'xs:int'
Calls: GetUser Returned: Conditionally Details: DetailLevel: none, ReturnAll
# Returns: 'xs:int'
Maximum number of minutes that a listing may be scheduled in advance of its going live.
# Argument: 'xs:int'
Calls: GetUser Returned: Conditionally Details: DetailLevel: none, ReturnAll
# Returns: 'xs:int'
Minimum number of minutes that a listing may be scheduled in advance of its going live.
# Argument: 'xs:int'
Calls: GetUser Returned: Conditionally Details: DetailLevel: none, ReturnAll
# Returns: 'xs:int'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::SchedulingInfoType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SchedulingInfoType.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 = ( [ 'MaxScheduledItems', 'xs:int', '', '', '' ] , [ 'MaxScheduledMinutes', 'xs:int', '', '', '' ] , [ 'MinScheduledMinutes', 'xs:int', '', '', '' ] ); 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 setMaxScheduledItems { my $self = shift; $self->{'MaxScheduledItems'} = shift }
sub getMaxScheduledItems { my $self = shift; return $self->{'MaxScheduledItems'}; }
sub setMaxScheduledMinutes { my $self = shift; $self->{'MaxScheduledMinutes'} = shift }
sub getMaxScheduledMinutes { my $self = shift; return $self->{'MaxScheduledMinutes'}; }
sub setMinScheduledMinutes { my $self = shift; $self->{'MinScheduledMinutes'} = shift }
sub getMinScheduledMinutes { my $self = shift; return $self->{'MinScheduledMinutes'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;