Skip to content

Commit

Permalink
documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
pullingshots committed Feb 14, 2012
1 parent 507892a commit 5a7d001
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 deletions.
11 changes: 11 additions & 0 deletions lib/Shipment.pm
Expand Up @@ -85,6 +85,17 @@ sub ups {
shift; return Shipment::UPS->new(@_)
}

=method temando
The temando method returns a L<Shipment::Temando> object. See L<Shipment::Temando> for
more details.
=cut

sub temando {
shift; return Shipment::UPS->new(@_)
}

=method address
The address method returns a L<Shipment::Address> object.
Expand Down
14 changes: 7 additions & 7 deletions lib/Shipment/Base.pm
Expand Up @@ -55,7 +55,7 @@ use MooseX::Types::DateTime::ButMaintained qw( DateTime );
Where the shipment is being shipped from and to
type: Shipment::Address
type: L<Shipment::Address>
=cut

Expand Down Expand Up @@ -106,7 +106,7 @@ has 'bill_account' => (
The billing address (typically not needed)
type: Shipment::Address
type: L<Shipment::Address>
=cut

Expand Down Expand Up @@ -209,7 +209,7 @@ has 'package_type' => (
The list of individual packages being shipped
type: ArrayRef[Shipment::Package]
type: ArrayRef[L<Shipment::Package>]
methods handled:
all_packages # returns a list of Shipment::Package
Expand Down Expand Up @@ -284,7 +284,7 @@ has 'pickup_date' => (
The available services
type: HashRef[Shipment::Service]
type: HashRef[L<Shipment::Service>]
methods handled:
all_services # returns a list of Shipment::Service
Expand All @@ -306,7 +306,7 @@ has 'services' => (
Details of what was returned from a call to rate
type: Shipment::Service
type: L<Shipment::Service>
=cut

Expand All @@ -333,7 +333,7 @@ has 'tracking_id' => (
All documents for a shipment including all labels
type: Shipment::Label
type: L<Shipment::Label>
=cut

Expand All @@ -346,7 +346,7 @@ has 'documents' => (
The manifest document (usually generated by an end of day close, but may also be generated on a per shipment basis)
type: Shipment::Label
type: L<Shipment::Label>
=cut

Expand Down
2 changes: 1 addition & 1 deletion lib/Shipment/FedEx.pm
Expand Up @@ -34,7 +34,7 @@ This class provides an interface to the FedEx Web Services for Shipping. You mus
https://www.fedex.com/wpor/web/jsp/drclinks.jsp?links=techresources/index.html
It is an extension of Shipment::Base.
It is an extension of L<Shipment::Base>.
It makes extensive use of SOAP::WSDL in order to create/decode xml requests and responses. The Shipment::FedEx::WSDL interface was created primarily using the wsdl2perl.pl script from SOAP::WSDL.
Expand Down
2 changes: 1 addition & 1 deletion lib/Shipment/Purolator.pm
Expand Up @@ -35,7 +35,7 @@ This class provides an interface to the Purolator E-Ship Web Services. You must
https://eship.purolator.com
It is an extension of Shipment::Base.
It is an extension of L<Shipment::Base>.
It makes extensive use of SOAP::WSDL in order to create/decode xml requests and responses. The Shipment::UPS::WSDL interface was created primarily using the wsdl2perl.pl script from SOAP::WSDL.
Expand Down
2 changes: 1 addition & 1 deletion lib/Shipment/Temando.pm
Expand Up @@ -34,7 +34,7 @@ This class provides an interface to the Temando Web Services API. You must sign
http://www.temando.com/affiliateRegistration2.html
It is an extension of Shipment::Base
It is an extension of L<Shipment::Base>
It makes extensive use of SOAP::WSDL in order to create/decode xml requests and responses. The Shipment::Temando::WSDL interface was created primarily using the wsdl2perl.pl script from SOAP::WSDL.
Expand Down
2 changes: 1 addition & 1 deletion lib/Shipment/UPS.pm
Expand Up @@ -34,7 +34,7 @@ This class provides an interface to the UPS Online Tools. You must sign up for a
https://www.ups.com/upsdeveloperkit
It is an extension of Shipment::Base.
It is an extension of L<Shipment::Base>.
It makes extensive use of SOAP::WSDL in order to create/decode xml requests and responses. The Shipment::UPS::WSDL interface was created primarily using the wsdl2perl.pl script from SOAP::WSDL.
Expand Down

0 comments on commit 5a7d001

Please sign in to comment.