giansalex/greenter

View on GitHub
packages/core/src/Core/Model/Response/BillResult.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: Giansalex
 * Date: 21/07/2017
 * Time: 23:12.
 */

declare(strict_types=1);

namespace Greenter\Model\Response;

/**
 * Class BillResult.
 */
class BillResult extends BaseResult
{
    /**
     * @var string
     */
    protected $cdrZip;

    /**
     * @var CdrResponse
     */
    protected $cdrResponse;

    /**
     * @return string
     */
    public function getCdrZip(): ?string
    {
        return $this->cdrZip;
    }

    /**
     * @param string $cdrZip
     *
     * @return $this
     */
    public function setCdrZip(?string $cdrZip): self
    {
        $this->cdrZip = $cdrZip;

        return $this;
    }

    /**
     * @return CdrResponse
     */
    public function getCdrResponse(): ?CdrResponse
    {
        return $this->cdrResponse;
    }

    /**
     * @param CdrResponse $cdrResponse
     *
     * @return $this
     */
    public function setCdrResponse(?CdrResponse $cdrResponse): self
    {
        $this->cdrResponse = $cdrResponse;

        return $this;
    }
}