—use
utf8;
package
SemanticWeb::Schema::CommentAction;
# ABSTRACT: The act of generating a comment about a subject.
use
Moo;
# RECOMMEND PREREQ: Ref::Util::XS
use
namespace::autoclean;
our
$VERSION
=
'v0.0.3'
;
has
result_comment
=> (
is
=>
'rw'
,
predicate
=> 1,
json_ld
=>
'resultComment'
,
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::CommentAction - The act of generating a comment about a subject.
=head1 VERSION
version v0.0.3
=head1 DESCRIPTION
The act of generating a comment about a subject.
=head1 ATTRIBUTES
=head2 C<result_comment>
C<resultComment>
A sub property of result. The Comment created or sent as a result of this
action.
A result_comment should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Comment']>
=back
=head1 SEE ALSO
L<SemanticWeb::Schema::CommunicateAction>
=head1 AUTHOR
Robert Rothenberg <rrwo@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2018 by Robert Rothenberg.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut