-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSelectPromotion.php
More file actions
79 lines (66 loc) · 1.67 KB
/
SelectPromotion.php
File metadata and controls
79 lines (66 loc) · 1.67 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
namespace AlexWestergaard\PhpGa4\Event;
use AlexWestergaard\PhpGa4\Helper\EventHelper;
use AlexWestergaard\PhpGa4\Facade;
class SelectPromotion extends EventHelper implements Facade\Group\SelectPromotionFacade
{
protected null|string $creative_name;
protected null|string $creative_slot;
protected null|string $location_id;
protected null|string $promotion_id;
protected null|string $promotion_name;
protected array $items = [];
public function getName(): string
{
return 'select_promotion';
}
public function getParams(): array
{
return [
'creative_name',
'creative_slot',
'location_id',
'promotion_id',
'promotion_name',
'items',
];
}
public function getRequiredParams(): array
{
return ['items'];
}
public function setCreativeName(null|string $name)
{
$this->creative_name = $name;
return $this;
}
public function setCreativeSlot(null|string $slot)
{
$this->creative_slot = $slot;
return $this;
}
public function setLocationId(null|string $id)
{
$this->location_id = $id;
return $this;
}
public function setPromotionId(null|string $id)
{
$this->promotion_id = $id;
return $this;
}
public function setPromotionName(null|string $name)
{
$this->promotion_name = $name;
return $this;
}
public function addItem(Facade\Type\ItemType $item)
{
$this->items[] = $item->toArray();
return $this;
}
public function resetItems()
{
$this->items = [];
}
}