Source for file Shipment.php
Documentation is available at Shipment.php
* @author Stephan Schmidt <schst@php.net>
* default properties for a shipment
'Transactions' => array ()
* set package dimemsions for the shipment
* @param string transactio id
array_push($this->properties['Transactions'], array ( 'ItemId' => $ItemId, 'TransactionId' => $TransactionId ));
* @param string company name
* @param string street, line 1
* @param string street, line 2
* @param string state or province
* @param string phone number
public function SetFromAddress($CompanyName, $Name, $Street1, $Street2, $City, $Zip, $StateOrProvince, $Country, $Phone = null )
'CompanyName' => $CompanyName,
'StateOrProvince' => $StateOrProvince,
* @param string type of the address
* @param string company name
* @param string street, line 1
* @param string street, line 2
* @param string state or province
* @param string phone number
public function SetAddress($Type, $CompanyName, $Name, $Street1, $Street2, $City, $Zip, $StateOrProvince, $Country, $Phone = null )
'CompanyName' => $CompanyName,
'StateOrProvince' => $StateOrProvince,
Documentation generated on Mon, 11 Mar 2019 15:49:49 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|