eBay::API::XML::Call::SetStoreCategories::SetStoreCategoriesResponseType - eBay::API::XML::Call::SetStoreCategories::SetStoreCategoriesResponseType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::SetStoreCategories::SetStoreCategoriesResponseType

DESCRIPTION

Top

Returns the status of the processing progress for changes to the category structure for a store.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::SetStoreCategories::SetStoreCategoriesResponseType inherits from the eBay::API::XML::ResponseDataType class

Subroutines:

Top

setStatus()

When a category structure change is processed synchronously, the status is returned as Complete or Failed. For asynchronously processed changes, the status is reported as Pending. Use GetStoreCategoryUpdateStatus to monitor the status of asynchronously processed changes.

# Argument: 'ns:TaskStatusCodeType'

getStatus()

  Returned: Always
#    Returns: 'ns:TaskStatusCodeType'

setTaskID()

The task ID associated with the category structure change request. If the SetStoreCategories call is process synchronously, the task ID is 0. If the category structure changes affect many listings, the changes will be processed asynchronously and the task ID will be a positive number. Use the task ID with GetStoreCategoryUpdateStatus to monitor the status of asynchronously processed changes.

# Argument: 'xs:long'

getTaskID()

  Returned: Always
#    Returns: 'xs:long'


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

package eBay::API::XML::Call::SetStoreCategories::SetStoreCategoriesResponseType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. SetStoreCategoriesResponseType.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");

use eBay::API::XML::DataType::Enum::TaskStatusCodeType;


my @gaProperties = ( [ 'Status', 'ns:TaskStatusCodeType', ''
	     ,'eBay::API::XML::DataType::Enum::TaskStatusCodeType', '' ]
	, [ 'TaskID', 'xs:long', '', '', '' ]
                    );
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 setStatus {
  my $self = shift;
  $self->{'Status'} = shift
}

sub getStatus {
  my $self = shift;
  return $self->{'Status'};
}


sub setTaskID {
  my $self = shift;
  $self->{'TaskID'} = shift
}

sub getTaskID {
  my $self = shift;
  return $self->{'TaskID'};
}





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

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



1;