Request = $Request; $this->PickupType = $PickupType; $this->CustomerClassification = $CustomerClassification; $this->Shipment = $Shipment; } /** * * @return RequestType */ public function getRequest() { return $this->Request; } /** * * @param RequestType $Request */ public function setRequest($Request) { $this->Request = $Request; } /** * * @return CodeDescriptionType */ public function getPickupType() { return $this->PickupType; } /** * * @param CodeDescriptionType $PickupType */ public function setPickupType($PickupType) { $this->PickupType = $PickupType; } /** * * @return CodeDescriptionType */ public function getCustomerClassification() { return $this->CustomerClassification; } /** * * @param CodeDescriptionType $CustomerClassification */ public function setCustomerClassification($CustomerClassification) { $this->CustomerClassification = $CustomerClassification; } /** * * @return ShipmentType */ public function getShipment() { return $this->Shipment; } /** * * @param ShipmentType $Shipment */ public function setShipment($Shipment) { $this->Shipment = $Shipment; } }