package Data::SearchEngine::Results::Spellcheck::Suggestion; { $Data::SearchEngine::Results::Spellcheck::Suggestion::VERSION = '0.33'; } use Moose; has 'frequency' => ( is => 'ro', isa => 'Num', default => 1 ); has 'original_word' => ( is => 'ro', isa => 'Str', required => 1 ); has 'word' => ( is => 'ro', isa => 'Str', required => 1 ); 1; __END__ =pod =head1 NAME Data::SearchEngine::Results::Spellcheck::Suggestion =head1 VERSION version 0.33 =head1 AUTHOR Cory G Watson =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Cold Hard Code, LLC. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut