| WebService-Windows-LiveID-Auth documentation | Contained in the WebService-Windows-LiveID-Auth distribution. |
WebService::Windows::LiveID::Auth::User - The data class of authenticated user.
version 0.01
Application ID
Unique ID.
Authenticated datetime. See DateTime.
Signature
Toru Yamaguchi, <zigorou@cpan.org>
Please report any bugs or feature requests to
bug-webservice-windows-liveid-auth-user@rt.cpan.org, or through the web interface at
http://rt.cpan.org. I will be notified, and then you'll automatically be
notified of progress on your bug as I make changes.
Copyright 2007 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| WebService-Windows-LiveID-Auth documentation | Contained in the WebService-Windows-LiveID-Auth distribution. |
package WebService::Windows::LiveID::Auth::User; use strict; use warnings; use base qw(Class::Accessor::Fast); use DateTime; __PACKAGE__->mk_accessors(qw/ appid uid ts sig /);
our $VERSION = '0.01';
sub new { my ($class, $args) = @_; $args->{ts} = DateTime->from_epoch(epoch => $args->{ts}); return $class->SUPER::new($args); }
1; # End of WebService::Windows::LiveID::Auth::User