1 | <?php |
||
4 | class Optin |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $ref; |
||
11 | |||
12 | /** |
||
13 | * Optin constructor. |
||
14 | * |
||
15 | * @param string $ref |
||
16 | */ |
||
17 | public function __construct(string $ref) |
||
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | public function getRef(): string |
||
29 | |||
30 | /** |
||
31 | * @param array $payload |
||
32 | * @return static |
||
33 | */ |
||
34 | public static function create(array $payload) |
||
38 | } |
||
39 |