for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of RussianPost SDK package.
*
* © Appwilio (http://appwilio.com), greabock (https://github.com/greabock), JhaoDa (https://github.com/jhaoda)
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Appwilio\RussianPostSDK\Tracking\Single;
class TrackingOperationFinanceParameters
{
/** @var int */
private $Payment;
private $Value;
private $MassRate;
private $InsrRate;
private $AirRate;
private $Rate;
private $CustomDuty;
* Сумма наложенного платежа в копейках.
* @return int
public function getPayment(): int
return $this->Payment;
}
* Сумма объявленной ценности в копейках.
public function getDeclaredValue(): int
return $this->Value;
* Сумма платы за объявленную ценность в копейках.
public function getInsuranceRate(): int
return $this->InsrRate;
* Общая сумма платы за пересылку наземным и воздушным транспортом в копейках.
public function getMassRate(): int
return $this->MassRate;
* Выделенная сумма платы за пересылку воздушным транспортом из общей суммы платы за пересылку в копейках.
public function getAirRate(): int
return $this->AirRate;
* Сумма дополнительного тарифного сбора в копейках.
public function getExtraRate(): int
return $this->Rate;
* Сумма таможенного платежа в копейках.
public function getCustomsDuty(): int
return $this->CustomDuty;