The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyApp::Post;

use Elastic::Doc;

#===================================
has 'title' => (
#===================================
    is  => 'rw',
    isa => 'Str',
);

#===================================
has 'body' => (
#===================================
    is  => 'rw',
    isa => 'Str',
);

#===================================
has 'user' => (
#===================================
    is  => 'ro',
    isa => 'MyApp::User',
);

no Elastic::Doc;

1;