——# Copyright (C) 2010 Xerxes Tsang
# This program is free software; you can redistribute it and/or modify it
# under the terms of Perl Artistic License.
use
strict;
use
warnings;
=head1 NAME
Microsoft::AdCenter::NotificationManagementService::UserNotification - Represents "UserNotification" in Microsoft AdCenter Notification Management Service.
=head1 INHERITANCE
Microsoft::AdCenter::NotificationManagementService::Notification
=cut
sub
_type_name {
return
'UserNotification'
;
}
sub
_namespace_uri {
}
our
@_attributes
= (
qw/
ActivationCode
UserId
UserName
/
);
sub
_attributes {
my
$self
=
shift
;
return
(
$self
->SUPER::_attributes,
@_attributes
);
}
our
%_attribute_type
= (
ActivationCode
=>
'string'
,
UserId
=>
'int'
,
UserName
=>
'string'
,
);
sub
_attribute_type {
my
(
$self
,
$attribute
) =
@_
;
if
(
exists
$_attribute_type
{
$attribute
}) {
return
$_attribute_type
{
$attribute
};
}
return
$self
->SUPER::_attribute_type(
$attribute
);
}
__PACKAGE__->mk_accessors(__PACKAGE__->_attributes);
1;
=head1 SYNOPSIS
See L<http://msdn.microsoft.com/en-US/library/ee730327%28v=MSADS.60%29.aspx> for documentation of the various data objects.
=cut
=head1 METHODS
Remark: Inherited methods are not listed.
=head2 new
Creates a new instance
=head2 ActivationCode
Gets/sets ActivationCode (string)
=head2 UserId
Gets/sets UserId (int)
=head2 UserName
Gets/sets UserName (string)
=cut