Jake Vanderwerf
5 days ago 0dfe1d8afafc59c4a5559c498342668d5a58d6ef
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
namespace JVBase\integrations;
 
if (!defined('ABSPATH')) {
    exit;
}
 
class APIEndpoint
{
    protected string|false $create = false;
    protected string|false $update = false;
    protected string|false $delete = false;
    protected string|false $batchCreate = false;
    protected string|false $batchUpdate = false;
    protected string|false $batchDelete = false;
    protected string|false $batchImport = false;
    protected string|false $search = false;
    protected string|false $image = false;
 
    public function __construct() {
 
    }
    public function setCreate(string $create):void
    {
        $this->create = $create;
    }
    public function getCreate():string|false
    {
        return $this->create;
    }
    public function setUpdate(string $update):void
    {
        $this->update = $update;
    }
    public function getUpdate():string|false
    {
        return $this->update;
    }
    public function setDelete(string $delete):void
    {
        $this->delete = $delete;
    }
    public function getDelete():string|false
    {
        return $this->delete;
    }
    public function setSearch(string $search):void
    {
        $this->search = $search;
    }
    public function getSearch():string|false
    {
        return $this->search;
    }
    public function setImage(string $image):void
    {
        $this->image = $image;
    }
    public function getImage():string|false
    {
        return $this->image;
    }
    public function setBatchCreate(string $batchCreate):void
    {
        $this->batchCreate = $batchCreate;
    }
    public function getBatchCreate():string|false
    {
        return $this->batchCreate;
    }
    public function setBatchUpdate(string $batchUpdate):void
    {
        $this->batchUpdate = $batchUpdate;
    }
    public function getBatchUpdate():string|false
    {
        return $this->batchUpdate;
    }
    public function setBatchDelete(string $batchDelete):void
    {
        $this->batchDelete = $batchDelete;
    }
    public function getBatchDelete():string|false
    {
        return $this->batchDelete;
    }
    public function setImport(string $batchImport):void
    {
        $this->batchImport = $batchImport;
    }
    public function getBatchImport():string|false
    {
        return $this->batchImport;
    }
}