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;
final class TrackingEventFinanceParameters
{
/** @var int */
private $Payment;
private $Value;
private $MassRate;
private $InsrRate;
private $AirRate;
private $Rate;
private $CustomDuty;
* Сумма наложенного платежа в копейках (Payment).
* @return int
public function getPayment(): int
return $this->Payment;
}
* Сумма объявленной ценности в копейках (Value).
public function getDeclaredValue(): int
return $this->Value;
* Сумма платы за объявленную ценность в копейках (InsrRate).
public function getInsuranceRate(): int
return $this->InsrRate;
* Общая сумма платы за пересылку наземным и воздушным транспортом в копейках (MassRate).
public function getWeightRate(): int
return $this->MassRate;
* Выделенная сумма платы за пересылку воздушным транспортом из общей суммы платы за пересылку в копейках (AirRate).
public function getAirRate(): int
return $this->AirRate;
* Сумма дополнительного тарифного сбора в копейках (Rate).
public function getExtraRate(): int
return $this->Rate;
* Сумма таможенного платежа в копейках (CustomDuty).
public function getCustomsDuty(): int
return $this->CustomDuty;