forked from thoth-pub/thoth-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrice.php
More file actions
46 lines (37 loc) · 996 Bytes
/
Price.php
File metadata and controls
46 lines (37 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace ThothApi\GraphQL\Models;
class Price extends AbstractModel
{
public function getPriceId(): ?string
{
return $this->getData('priceId');
}
public function setPriceId(?string $priceId): void
{
$this->setData('priceId', $priceId);
}
public function getPublicationId(): ?string
{
return $this->getData('publicationId');
}
public function setPublicationId(?string $publicationId): void
{
$this->setData('publicationId', $publicationId);
}
public function getCurrencyCode(): ?string
{
return $this->getData('currencyCode');
}
public function setCurrencyCode(?string $currencyCode): void
{
$this->setData('currencyCode', $currencyCode);
}
public function getUnitPrice(): ?float
{
return $this->getData('unitPrice');
}
public function setUnitPrice(?float $unitPrice): void
{
$this->setData('unitPrice', $unitPrice);
}
}