Amazon-MWS
view release on metacpan or search on metacpan
lib/Amazon/MWS/XML/Order.pm view on Meta::CPAN
Returns the generic ShipmentServiceLevelCategory (not the
ShipServiceLevel which is a non-typed string).
http://docs.developer.amazonservices.com/en_US/orders/2013-09-01/Orders_Datatypes.html
Available values:
=over 4
=item Expedited
=item FreeEconomy
=item NextDay
=item SameDay
=item SecondDay
=item Scheduled
lib/Amazon/MWS/XML/Response/OrderReport.pm view on Meta::CPAN
if (my $billing = $self->struct->{BillingData}) {
if (exists $billing->{BuyerEmailAddress}) {
return $billing->{BuyerEmailAddress};
}
};
return;
}
# OrderDate The date the order was placed
# OrderPostedDate The date the buyer's credit card was charged and order processing was completed
sub order_date {
my $self = shift;
my $struct = $self->struct;
# maybe this would need a different method, but we don't know what
# to do with it anyway.
my $date = $struct->{OrderPostedDate} || $struct->{OrderDate};
return DateTime::Format::ISO8601->parse_datetime($date);
}
( run in 0.376 second using v1.01-cache-2.11-cpan-de7293f3b23 )