WebService::UPS::Address - Object to Represent Addresses


WebService-UPS documentation  | view source Contained in the WebService-UPS distribution.

Index


NAME

Top

WebService::UPS::Address - Object to Represent Addresses

SYNOPSIS

Top

    my $Package = WebService::UPS::TrackRequest->new;
    $Package->Username('kbrandt');
    $Package->Password('topsecrent');
    $Package->License('8C3D7EE8FZZZZZ4');
    $Package->TrackingNumber('1ZA45Y5111111111');
    print $Package->Username();
    my $trackedpackage = $Package->requestTrack();
    my $address = $trackedpackage->getShipperAddress();
	print $address->getZip();




Methods

Top

new()

    WebService::UPS::Address->new( _address_hash => $object->getShipperAddress());

The constructor method that creates a new address Object. You probably should not be calling this directly as above, rather it should returned from the WebService::UPS::TrackedPackage Object

_address_hash

You shouldn't be messing with it in general. But if you dump it with dumper, and you are clever, you might be able to access things that my module doesn't have getters for.

getCity()

    $address->getCity()

This and the following objects return strings.

getState()

    $address->getState()

getZip()

    $address->getCity()

getAddressLine1()

    $address->getAddressLine1()

getAddressLine2()

    $address->getAddressLine2()

AUTHOR

Top

Kyle Brandt, kyle@kbrandt.com http://www.kbrandt.com


WebService-UPS documentation  | view source Contained in the WebService-UPS distribution.