| Data-Feed documentation | Contained in the Data-Feed distribution. |
| Data-Feed documentation | Contained in the Data-Feed distribution. |
package Data::Feed::Web::Content; use Any::Moose; has 'type' => ( is => 'rw', isa => 'Str', ); has 'body' => ( is => 'rw', isa => 'Str', ); __PACKAGE__->meta->make_immutable; no Any::Moose; 1; __END__