AnswerPreCheckoutQuery   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 15
dl 0
loc 45
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getPreCheckoutQueryId() 0 3 1
A __construct() 0 4 1
A fromArray() 0 5 1
A getErrorMessage() 0 3 1
A typeSerialize() 0 6 1
1
<?php
2
3
/**
4
 * This phpFile is auto-generated.
5
 */
6
7
declare(strict_types=1);
8
9
namespace PHPTdGram\Schema;
10
11
/**
12
 * Sets the result of a pre-checkout query; for bots only.
13
 */
14
class AnswerPreCheckoutQuery extends TdFunction
15
{
16
    public const TYPE_NAME = 'answerPreCheckoutQuery';
17
18
    /**
19
     * Identifier of the pre-checkout query.
20
     */
21
    protected string $preCheckoutQueryId;
22
23
    /**
24
     * An error message, empty on success.
25
     */
26
    protected string $errorMessage;
27
28
    public function __construct(string $preCheckoutQueryId, string $errorMessage)
29
    {
30
        $this->preCheckoutQueryId = $preCheckoutQueryId;
31
        $this->errorMessage       = $errorMessage;
32
    }
33
34
    public static function fromArray(array $array): AnswerPreCheckoutQuery
35
    {
36
        return new static(
37
            $array['pre_checkout_query_id'],
38
            $array['error_message'],
39
        );
40
    }
41
42
    public function typeSerialize(): array
43
    {
44
        return [
45
            '@type'                 => static::TYPE_NAME,
46
            'pre_checkout_query_id' => $this->preCheckoutQueryId,
47
            'error_message'         => $this->errorMessage,
48
        ];
49
    }
50
51
    public function getPreCheckoutQueryId(): string
52
    {
53
        return $this->preCheckoutQueryId;
54
    }
55
56
    public function getErrorMessage(): string
57
    {
58
        return $this->errorMessage;
59
    }
60
}
61