1use 5.006;
2use strict;
3use warnings;
4
5package Metabase::User::FullName;
6
7our $VERSION = '0.025';
8
9use Metabase::Fact::String;
10our @ISA = qw/Metabase::Fact::String/;
11
121;
13
14# ABSTRACT: Metabase fact for user full name
15
16__END__
17
18=pod
19
20=encoding UTF-8
21
22=head1 NAME
23
24Metabase::User::FullName - Metabase fact for user full name
25
26=head1 VERSION
27
28version 0.025
29
30=head1 SYNOPSIS
31
32  my $email = Metabase::User::FullName->new(
33    resource => 'metabase:user:B66C7662-1D34-11DE-A668-0DF08D1878C0',
34    content => 'John Doe',
35  );
36
37=head1 DESCRIPTION
38
39This is just a simple string fact that stores the real name of a user in his
40profile.
41
42=head1 BUGS
43
44Please report any bugs or feature using the CPAN Request Tracker.
45Bugs can be submitted through the web interface at
46L<http://rt.cpan.org/Dist/Display.html?Queue=Metabase-Fact>
47
48When submitting a bug or request, please include a test-file or a patch to an
49existing test-file that illustrates the bug or desired feature.
50
51=head1 AUTHORS
52
53=over 4
54
55=item *
56
57David Golden <dagolden@cpan.org>
58
59=item *
60
61Ricardo Signes <rjbs@cpan.org>
62
63=item *
64
65H.Merijn Brand <hmbrand@cpan.org>
66
67=back
68
69=head1 COPYRIGHT AND LICENSE
70
71This software is Copyright (c) 2016 by David Golden.
72
73This is free software, licensed under:
74
75  The Apache License, Version 2.0, January 2004
76
77=cut
78