Acme-Resume
view release on metacpan or search on metacpan
lib/Acme/Resume/Types/Job.pm view on Meta::CPAN
use Acme::Resume::Internal;
use strict;
use warnings;
# ABSTRACT: Defines a Job
# PODNAME: Acme::Resume::Types::Job
our $VERSION = '0.0109';
class Acme::Resume::Types::Job :rw {
has company => (
isa => Str,
predicate => 1,
);
has url => (
isa => Uri,
coerce => 1,
predicate => 1,
);
has location => (
isa => Str,
predicate => 1,
);
has role => (
isa => Str,
predicate => 1,
);
has started => (
isa => TimeMoment,
coerce => 1,
);
has left => (
isa => TimeMoment,
predicate => 1,
coerce => 1,
);
has current => (
isa => Bool,
default => 0,
);
has description => (
isa => Str,
);
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Acme::Resume::Types::Job - Defines a Job
=head1 VERSION
Version 0.0109, released 2022-01-30.
=head1 SOURCE
L<https://github.com/Csson/p5-Acme-Resume>
=head1 HOMEPAGE
L<https://metacpan.org/release/Acme-Resume>
=head1 AUTHOR
Erik Carlsson <info@code301.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Erik Carlsson.
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
( run in 1.345 second using v1.01-cache-2.11-cpan-ceb78f64989 )