Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | final class AliasAssertInsertRequest extends Request |
||
14 | { |
||
15 | use RequestCommonsTrait; |
||
16 | public const API_PATH = '/Payment/v1/Alias/AssertInsert'; |
||
17 | public const RESPONSE_CLASS = AliasAssertInsertResponse::class; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | * @SerializedName("Token") |
||
22 | */ |
||
23 | private $token; |
||
24 | |||
25 | public function __construct(RequestConfig $requestConfig, string $token) |
||
30 | } |
||
31 | |||
32 | public function getToken(): string |
||
35 | } |
||
36 | |||
37 | public function setToken(string $token): self |
||
38 | { |
||
39 | $this->token = $token; |
||
40 | |||
41 | return $this; |
||
42 | } |
||
43 | |||
44 | public function execute(): AliasAssertInsertResponse |
||
50 | } |
||
51 | } |
||
52 |