The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Shipment::UPS::WSDL::TrackInterfaces::TrackService::TrackPort

VERSION

version 3.10

SYNOPSIS

 use Shipment::UPS::WSDL::TrackInterfaces::TrackService::TrackPort;
 my $interface = Shipment::UPS::WSDL::TrackInterfaces::TrackService::TrackPort->new();

 my $response;
 $response = $interface->ProcessTrack();

DESCRIPTION

SOAP Interface for the TrackService web service located at https://wwwcie.ups.com/webservices/Track.

NAME

Shipment::UPS::WSDL::TrackInterfaces::TrackService::TrackPort - SOAP Interface for the TrackService Web Service

SERVICE TrackService

Port TrackPort

METHODS

General methods

new

Constructor.

All arguments are forwarded to SOAP::WSDL::Client.

SOAP Service methods

Method synopsis is displayed with hash refs as parameters.

The commented class names in the method's parameters denote that objects of the corresponding class can be passed instead of the marked hash ref.

You may pass any combination of objects, hash and list refs to these methods, as long as you meet the structure.

List items (i.e. multiple occurences) are not displayed in the synopsis. You may generally pass a list ref of hash refs (or objects) instead of a hash ref - this may result in invalid XML if used improperly, though. Note that SOAP::WSDL always expects list references at maximum depth position.

XML attributes are not displayed in this synopsis and cannot be set using hash refs. See the respective class' documentation for additional information.

ProcessTrack

Returns a Shipment::UPS::WSDL::TrackElements::TrackResponse object.

 $response = $interface->ProcessTrack( {
    Request =>  { # Shipment::UPS::WSDL::TrackTypes::RequestType
      RequestOption =>  $some_value, # string
      TransactionReference =>  { # Shipment::UPS::WSDL::TrackTypes::TransactionReferenceType
        CustomerContext =>  $some_value, # string
        TransactionIdentifier =>  $some_value, # string
      },
    },
    InquiryNumber =>  $some_value, # string
    TrackingOption =>  $some_value, # string
    CandidateBookmark =>  $some_value, # string
    ShipperAccountInfo =>  { # Shipment::UPS::WSDL::TrackTypes::ShipperAccountInfoType
      PostalCode =>  $some_value, # string
      CountryCode =>  $some_value, # string
    },
  },,
 {
    UsernameToken =>  {
      Username =>  $some_value, # string
      Password =>  $some_value, # string
    },
    ServiceAccessToken =>  {
      AccessLicenseNumber =>  $some_value, # string
    },
  },,
 );

AUTHOR

Generated by SOAP::WSDL on Tue May 8 13:46:11 2012

AUTHOR

Andrew Baerg <baergaj@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Andrew Baerg.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.