| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::NotificationEventPropertyType
Defines properties associated with particular event.
eBay::API::XML::DataType::NotificationEventPropertyType inherits from the eBay::API::XML::BaseDataType class
The name of the notification event.
Calls: SetNotificationPreferences RequiredInput: No AllValuesExcept: None
# Argument: 'ns:NotificationEventTypeCodeType'
Calls: GetNotificationPreferences Returned: Conditionally
# Returns: 'ns:NotificationEventTypeCodeType'
Specify property name associated with an particular event.
Calls: SetNotificationPreferences RequiredInput: No
# Argument: 'ns:NotificationEventPropertyNameCodeType'
Calls: GetNotificationPreferences Returned: Conditionally
# Returns: 'ns:NotificationEventPropertyNameCodeType'
Specifies the value for the property.
Calls: SetNotificationPreferences RequiredInput: No
# Argument: 'xs:string'
Calls: GetNotificationPreferences Returned: Conditionally
# Returns: 'xs:string'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::NotificationEventPropertyType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. NotificationEventPropertyType.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"); use eBay::API::XML::DataType::Enum::NotificationEventPropertyNameCodeType; use eBay::API::XML::DataType::Enum::NotificationEventTypeCodeType; my @gaProperties = ( [ 'EventType', 'ns:NotificationEventTypeCodeType', '' ,'eBay::API::XML::DataType::Enum::NotificationEventTypeCodeType', '' ] , [ 'Name', 'ns:NotificationEventPropertyNameCodeType', '' ,'eBay::API::XML::DataType::Enum::NotificationEventPropertyNameCodeType', '' ] , [ 'Value', 'xs:string', '', '', '' ] ); 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 setEventType { my $self = shift; $self->{'EventType'} = shift }
sub getEventType { my $self = shift; return $self->{'EventType'}; }
sub setName { my $self = shift; $self->{'Name'} = shift }
sub getName { my $self = shift; return $self->{'Name'}; }
sub setValue { my $self = shift; $self->{'Value'} = shift }
sub getValue { my $self = shift; return $self->{'Value'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;