eBay::API::XML::Call::GetNotificationPreferences - eBay::API::XML::Call::GetNotificationPreferences documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::GetNotificationPreferences

DESCRIPTION

Top

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::GetNotificationPreferences inherits from the eBay::API::XML::BaseCall class

Subroutines:

Top

setPreferenceLevel()

Specifies what type of Preference to retrieve.

  RequiredInput: Yes
#    Argument: 'ns:NotificationRoleCodeType'

getApplicationDeliveryPreferences()

Specifies application-based event preferences that have been enabled.

  Returned: Conditionally
#    Returns: 'ns:ApplicationDeliveryPreferencesType'

getDeliveryURLName()

Specifies application delivery URL Name associated with this user.

  Returned: Conditionally
#    Returns: 'xs:string'

getEventProperty()

Characteristics or details of an event such as type, name and value.

  Returned: Conditionally
#    Returns: reference to an array  
                      of 'ns:NotificationEventPropertyType'

getUserData()

return user data for notification settings such as set mobile phone number etc.

  Returned: Conditionally
#    Returns: 'ns:NotificationUserDataType'

getUserDeliveryPreferenceArray()

Specifies user-based event preferences that have been enabled or disabled.

  Returned: Conditionally
#    Returns: 'ns:NotificationEnableArrayType'


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

package eBay::API::XML::Call::GetNotificationPreferences;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. GetNotificationPreferences.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  

use eBay::API::XML::BaseCall;
our @ISA = ("eBay::API::XML::BaseCall");

use eBay::API::XML::Call::GetNotificationPreferences::GetNotificationPreferencesRequestType;
use eBay::API::XML::Call::GetNotificationPreferences::GetNotificationPreferencesResponseType;


sub getApiCallName {
   return 'GetNotificationPreferences';
}
sub getRequestDataTypeFullPackage {
   return 'eBay::API::XML::Call::GetNotificationPreferences::GetNotificationPreferencesRequestType';
}
sub getResponseDataTypeFullPackage {
   return 'eBay::API::XML::Call::GetNotificationPreferences::GetNotificationPreferencesResponseType';
}

#
# input properties
#

       
sub setPreferenceLevel {
   my $self   = shift;
   my $sPreferenceLevel = shift;
   $self->getRequestDataType()->setPreferenceLevel($sPreferenceLevel);
}



#
# output properties
#

       
sub getApplicationDeliveryPreferences {
   my $self = shift;
   return $self->getResponseDataType()->getApplicationDeliveryPreferences();
}

       
sub getDeliveryURLName {
   my $self = shift;
   return $self->getResponseDataType()->getDeliveryURLName();
}

       
sub getEventProperty {
   my $self = shift;
   return $self->getResponseDataType()->getEventProperty();
}

       
sub getUserData {
   my $self = shift;
   return $self->getResponseDataType()->getUserData();
}

       
sub getUserDeliveryPreferenceArray {
   my $self = shift;
   return $self->getResponseDataType()->getUserDeliveryPreferenceArray();
}





1;