1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
pricing.php
См. документацию.
1<?php
2
3namespace Sale\Handlers\Delivery\YandexTaxi\Api\RequestEntity;
4
10final class Pricing extends RequestEntity
11{
13 protected $currency;
14
16 protected $finalPrice;
17
19 protected $offer;
20
24 public function getCurrency()
25 {
26 return $this->currency;
27 }
28
33 public function setCurrency(string $currency): Pricing
34 {
35 $this->currency = $currency;
36
37 return $this;
38 }
39
43 public function getFinalPrice()
44 {
45 return $this->finalPrice;
46 }
47
52 public function setFinalPrice(string $finalPrice): Pricing
53 {
54 $this->finalPrice = $finalPrice;
55
56 return $this;
57 }
58
62 public function getOffer()
63 {
64 return $this->offer;
65 }
66
71 public function setOffer(Offer $offer): Pricing
72 {
73 $this->offer = $offer;
74
75 return $this;
76 }
77}
$currency
Определения template.php:266