gabrielbull/php-ups-api

View on GitHub
src/Entity/LabelRecoveryRequest.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Ups\Entity;

class LabelRecoveryRequest
{
    public $LabelSpecification;
    public $Translate;
    public $LabelDelivery;
    public $TrackingNumber;
    public $ReferenceNumber;
    public $ShipperNumber;

    public function __construct()
    {
        $this->LabelSpecification = new LabelSpecification();
        $this->Translate = new Translate();
        $this->LabelDelivery = new LabelDelivery();
        $this->ReferenceNumber = new ReferenceNumber();
    }
}