package Reaction::InterfaceModel::Action::DBIC::Result; use Reaction::InterfaceModel::Action; use Reaction::Types::DBIC 'Row'; use Reaction::Class; use namespace::clean -except => [ qw(meta) ]; extends 'Reaction::InterfaceModel::Action'; has '+target_model' => (isa => Row); __PACKAGE__->meta->make_immutable; 1; __END__; =head1 NAME Reaction::InterfaceModel::Action::DBIC::Result =head1 DESCRIPTION Base class for actions that apply to DBIC row objects. Extends L =head1 ATTRIBUTES =head2 target_model Extends C by assigning it a type constraint of L. =head1 SEE ALSO L, =head1 AUTHORS See L for authors. =head1 LICENSE See L for the license. =cut