SemanticWeb-Schema/lib/SemanticWeb/Schema/OrderItem.pm
use utf8;
package SemanticWeb::Schema::OrderItem;
# ABSTRACT: An order item is a line of an order
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::Intangible /;
use MooX::JSON_LD 'OrderItem';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has order_delivery => (
is => 'rw',
predicate => '_has_order_delivery',
json_ld => 'orderDelivery',
);
has order_item_number => (
is => 'rw',
predicate => '_has_order_item_number',
json_ld => 'orderItemNumber',
);
has order_item_status => (
is => 'rw',
predicate => '_has_order_item_status',
json_ld => 'orderItemStatus',
);
has order_quantity => (
is => 'rw',
predicate => '_has_order_quantity',
json_ld => 'orderQuantity',
);
has ordered_item => (
is => 'rw',
predicate => '_has_ordered_item',
json_ld => 'orderedItem',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::OrderItem - An order item is a line of an order
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
An order item is a line of an order. It includes the quantity and shipping
details of a bought offer.
=head1 ATTRIBUTES
=head2 C<order_delivery>
C<orderDelivery>
The delivery of the parcel related to this order or order item.
A order_delivery should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::ParcelDelivery']>
=back
=head2 C<_has_order_delivery>
A predicate for the L</order_delivery> attribute.
=head2 C<order_item_number>
C<orderItemNumber>
The identifier of the order item.
A order_item_number should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_order_item_number>
A predicate for the L</order_item_number> attribute.
=head2 C<order_item_status>
C<orderItemStatus>
The current status of the order item.
A order_item_status should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::OrderStatus']>
=back
=head2 C<_has_order_item_status>
A predicate for the L</order_item_status> attribute.
=head2 C<order_quantity>
C<orderQuantity>
The number of the item ordered. If the property is not set, assume the
quantity is one.
A order_quantity should be one of the following types:
=over
=item C<Num>
=back
=head2 C<_has_order_quantity>
A predicate for the L</order_quantity> attribute.
=head2 C<ordered_item>
C<orderedItem>
The item ordered.
A ordered_item should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::OrderItem']>
=item C<InstanceOf['SemanticWeb::Schema::Product']>
=item C<InstanceOf['SemanticWeb::Schema::Service']>
=back
=head2 C<_has_ordered_item>
A predicate for the L</ordered_item> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::Intangible>
=head1 SOURCE
The development version is on github at L<https://github.com/robrwo/SemanticWeb-Schema>
and may be cloned from L<git://github.com/robrwo/SemanticWeb-Schema.git>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<https://github.com/robrwo/SemanticWeb-Schema/issues>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
Robert Rothenberg <rrwo@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2018-2023 by Robert Rothenberg.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut