1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
offer.php
См. документацию.
1<?php
2
3namespace Sale\Handlers\Delivery\YandexTaxi\Api\RequestEntity;
4
10final class Offer extends RequestEntity
11{
13 protected $offerId;
14
16 protected $price;
17
21 public function getOfferId()
22 {
23 return $this->offerId;
24 }
25
30 public function setOfferId(string $offerId): Offer
31 {
32 $this->offerId = $offerId;
33
34 return $this;
35 }
36
40 public function getPrice()
41 {
42 return $this->price;
43 }
44
49 public function setPrice(string $price): Offer
50 {
51 $this->price = $price;
52
53 return $this;
54 }
55}