InlineQueryResultVenueType   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 103
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
eloc 20
dl 0
loc 103
ccs 0
cts 16
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 16 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Greenplugin\TelegramBot\Type\InlineQueryResult;
6
7
use Greenplugin\TelegramBot\Method\Traits\FillFromArrayTrait;
8
use Greenplugin\TelegramBot\Type\InputMessageContent\InputMessageContentType;
9
10
/**
11
 * Class InlineQueryResultVenueType.
12
 *
13
 * Represents a venue. By default, the venue will be sent by the user.
14
 * Alternatively, you can use input_message_content to send a message with the specified content instead of the venue.
15
 *
16
 * @see https://core.telegram.org/bots/api#inlinequeryresultvenue
17
 */
18
class InlineQueryResultVenueType extends InlineQueryResultType
19
{
20
    use FillFromArrayTrait;
21
22
    /**
23
     * Latitude of the venue location in degrees.
24
     *
25
     * @var float
26
     */
27
    public $latitude;
28
29
    /**
30
     * Longitude of the venue location in degrees.
31
     *
32
     * @var float
33
     */
34
    public $longitude;
35
36
    /**
37
     * Title of the venue.
38
     *
39
     * @var string
40
     */
41
    public $title;
42
43
    /**
44
     * Address of the venue.
45
     *
46
     * @var string
47
     */
48
    public $address;
49
50
    /**
51
     * Optional. Foursquare identifier of the venue if known.
52
     *
53
     * @var string|null
54
     */
55
    public $foursquareId;
56
57
    /**
58
     * Optional. Foursquare type of the venue, if known.
59
     * (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.).
60
     *
61
     * @var string|null
62
     */
63
    public $foursquareType;
64
65
    /**
66
     * Optional. Content of the message to be sent instead of the venue.
67
     *
68
     * @var InputMessageContentType|null
69
     */
70
    public $inputMessageContent;
71
72
    /**
73
     * Optional. Url of the thumbnail for the result.
74
     *
75
     * @var string|null
76
     */
77
    public $thumbUrl;
78
79
    /**
80
     * Optional. Thumbnail width.
81
     *
82
     * @var int|null
83
     */
84
    public $thumbWidth;
85
86
    /**
87
     * Optional. Thumbnail height.
88
     *
89
     * @var int|null
90
     */
91
    public $thumbHeight;
92
93
    /**
94
     * InlineQueryResultVenueType constructor.
95
     *
96
     * @param string     $id
97
     * @param float      $latitude
98
     * @param float      $longitude
99
     * @param string     $title
100
     * @param string     $address
101
     * @param array|null $data
102
     *
103
     * @throws \Greenplugin\TelegramBot\Exception\BadArgumentException
104
     */
105
    public function __construct(
106
        string $id,
107
        float $latitude,
108
        float $longitude,
109
        string $title,
110
        string $address,
111
        array $data = null
112
    ) {
113
        $this->type = self::TYPE_VENUE;
114
        $this->id = $id;
115
        $this->latitude = $latitude;
116
        $this->longitude = $longitude;
117
        $this->title = $title;
118
        $this->address = $address;
119
        if ($data) {
120
            $this->fill($data);
121
        }
122
    }
123
}
124