gabrielbull/php-ups-api

View on GitHub
src/Entity/ServiceSummary.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Ups\Entity;

class ServiceSummary
{
    use ServiceSummaryTrait;

    /** @deprecated */
    public $EstimatedArrival;

    /**
     * @var EstimatedArrival
     */
    protected $estimatedArrival;

    /**
     * @param \stdClass|null $response
     */
    public function __construct(\stdClass $response = null)
    {
        $this->build($response);
        
        $this->setEstimatedArrival(new EstimatedArrival());

        if (null !== $response) {
            if (isset($response->EstimatedArrival)) {
                $this->setEstimatedArrival(new EstimatedArrival($response->EstimatedArrival));
            }
        }
    }

    /**
     * @return EstimatedArrival|null
     */
    public function getEstimatedArrival()
    {
        return $this->estimatedArrival;
    }

    /**
     * @param EstimatedArrival
     */
    public function setEstimatedArrival(EstimatedArrival $estimatedArrival)
    {
        $this->EstimatedArrival = $estimatedArrival;
        $this->estimatedArrival = $estimatedArrival;
    }
}