| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ScheduleType
Sellers create live auction catalogs and schedule their live auction events by using the eBay Live Auctions Web site user interface. The seller can create a catalog in the Live Auctions system several months before a sale.
eBay::API::XML::DataType::ScheduleType inherits from the eBay::API::XML::BaseDataType class
Identifier for an event schedule in the seller's Live Auctions catalog.
# Argument: 'xs:int'
Calls: GetLiveAuctionCatalogDetails Returned: Conditionally
# Returns: 'xs:int'
Date and time that the sale schedule starts.
# Argument: 'xs:dateTime'
Calls: GetLiveAuctionCatalogDetails Returned: Conditionally
# Returns: 'xs:dateTime'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ScheduleType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ScheduleType.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 = ( [ 'ScheduleID', 'xs:int', '', '', '' ] , [ 'ScheduleTime', 'xs:dateTime', '', '', '' ] ); 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 setScheduleID { my $self = shift; $self->{'ScheduleID'} = shift }
sub getScheduleID { my $self = shift; return $self->{'ScheduleID'}; }
sub setScheduleTime { my $self = shift; $self->{'ScheduleTime'} = shift }
sub getScheduleTime { my $self = shift; return $self->{'ScheduleTime'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;