1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
transportclassification.php
См. документацию.
1<?php
2
3namespace Sale\Handlers\Delivery\YandexTaxi\Api\RequestEntity;
4
10final class TransportClassification extends RequestEntity
11{
13 protected $taxiClass;
14
18 public function getTaxiClass(): string
19 {
20 return $this->taxiClass;
21 }
22
27 public function setTaxiClass(string $taxiClass): TransportClassification
28 {
29 $this->taxiClass = $taxiClass;
30
31 return $this;
32 }
33}