The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Shipment::UPS::WSDL::ShipInterfaces::VoidService::VoidPort

VERSION

version 3.10

SYNOPSIS

 use Shipment::UPS::WSDL::ShipInterfaces::VoidService::VoidPort;
 my $interface = Shipment::UPS::WSDL::ShipInterfaces::VoidService::VoidPort->new();

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

DESCRIPTION

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

NAME

Shipment::UPS::WSDL::ShipInterfaces::VoidService::VoidPort - SOAP Interface for the VoidService Web Service

SERVICE VoidService

Port VoidPort

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.

ProcessVoid

Returns a Shipment::UPS::WSDL::ShipElements::VoidShipmentResponse object.

 $response = $interface->ProcessVoid( {
    Request =>  { # Shipment::UPS::WSDL::ShipTypes::RequestType
      RequestOption =>  $some_value, # string
      TransactionReference =>  { # Shipment::UPS::WSDL::ShipTypes::TransactionReferenceType
        CustomerContext =>  $some_value, # string
        TransactionIdentifier =>  $some_value, # string
      },
    },
    VoidShipment =>  {
      ShipmentIdentificationNumber =>  $some_value, # string
      TrackingNumber =>  $some_value, # string
    },
  },,
 {
    UsernameToken =>  {
      Username =>  $some_value, # string
      Password =>  $some_value, # string
    },
    ServiceAccessToken =>  {
      AccessLicenseNumber =>  $some_value, # string
    },
  },,
 );

AUTHOR

Generated by SOAP::WSDL on Fri Oct 15 14:54:28 2010

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.