1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
performerinfo.php
См. документацию.
1<?php
2
3namespace Sale\Handlers\Delivery\YandexTaxi\Api\RequestEntity;
4
10final class PerformerInfo extends RequestEntity
11{
13 protected $courierName;
14
16 protected $legalName;
17
19 protected $carModel;
20
22 protected $carNumber;
23
27 public function getCourierName()
28 {
29 return $this->courierName;
30 }
31
36 public function setCourierName(string $courierName): PerformerInfo
37 {
38 $this->courierName = $courierName;
39
40 return $this;
41 }
42
46 public function getLegalName()
47 {
48 return $this->legalName;
49 }
50
55 public function setLegalName(string $legalName): PerformerInfo
56 {
57 $this->legalName = $legalName;
58
59 return $this;
60 }
61
65 public function getCarModel()
66 {
67 return $this->carModel;
68 }
69
74 public function setCarModel(string $carModel): PerformerInfo
75 {
76 $this->carModel = $carModel;
77
78 return $this;
79 }
80
84 public function getCarNumber()
85 {
86 return $this->carNumber;
87 }
88
93 public function setCarNumber(string $carNumber): PerformerInfo
94 {
95 $this->carNumber = $carNumber;
96
97 return $this;
98 }
99}