1 | <?php |
||
5 | class UserListPricing |
||
6 | { |
||
7 | use HydratableTrait; |
||
8 | |||
9 | public const COST_TYPE_CPC = 'CPC'; |
||
10 | public const COST_TYPE_CPM = 'CPM'; |
||
11 | |||
12 | public const SALE_TYPE_DIRECT = 'DIRECT'; |
||
13 | public const SALE_TYPE_SALE_FOR_RESALE = 'SALE_FOR_RESALE'; |
||
14 | |||
15 | public const APPROVAL_STATE_UNAPPROVED = 'UNAPPROVED'; |
||
16 | public const APPROVAL_STATE_APPROVED = 'APPROVED'; |
||
17 | public const APPROVAL_STATE_REJECTED = 'REJECTED'; |
||
18 | |||
19 | /** @var string @required */ |
||
20 | protected $currencycodestring; |
||
21 | |||
22 | /** @var string @required */ |
||
23 | protected $userlistcost; |
||
24 | |||
25 | /** @var string @required */ |
||
26 | protected $costtype; |
||
27 | |||
28 | /** @var string @required */ |
||
29 | protected $saletype; |
||
30 | |||
31 | /** @var string @required */ |
||
32 | protected $ispricingactive; |
||
33 | |||
34 | /** @var string @required */ |
||
35 | protected $approvalstate; |
||
36 | |||
37 | public function getIsPricingactive(): string |
||
41 | |||
42 | public function getCurrencyCodeString(): string |
||
46 | |||
47 | public function getUserListCost(): string |
||
51 | |||
52 | public function getCostType(): string |
||
56 | |||
57 | public function getSaleType(): string |
||
61 | |||
62 | public function isPricingActive(): string |
||
66 | |||
67 | public function getApprovalstate(): string |
||
71 | |||
72 | public function setCurrencyCodeString(string $currencycodestring): void |
||
76 | |||
77 | public function setUserListCost(string $userlistcost): void |
||
81 | |||
82 | public function setCostType(string $costtype): void |
||
86 | |||
87 | public function setSaleType(string $saletype): void |
||
91 | |||
92 | public function setIsPricingActive(string $ispricingactive): void |
||
96 | |||
97 | public function setApprovalstate(string $approvalstate): void |
||
101 | } |
||
102 |