File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
11
11
### Deprecated
12
12
### Removed
13
13
### Fixed
14
+ - Missing ` thumbnail_url ` renaming.
14
15
### Security
15
16
16
17
## [ 0.81.0] - 2023-05-27
Original file line number Diff line number Diff line change 23
23
* $data = [
24
24
* 'id' => '',
25
25
* 'photo_url' => '',
26
- * 'thumb_url' => '',
26
+ * 'thumbnail_url' => '',
27
27
* 'photo_width' => 30,
28
28
* 'photo_height' => 30,
29
29
* 'title' => '',
37
37
* @method string getType() Type of the result, must be photo
38
38
* @method string getId() Unique identifier for this result, 1-64 bytes
39
39
* @method string getPhotoUrl() A valid URL of the photo. Photo must be in jpeg format. Photo size must not exceed 5MB
40
- * @method string getThumbUrl() URL of the thumbnail for the photo
40
+ * @method string getThumbnailUrl() URL of the thumbnail for the photo
41
41
* @method int getPhotoWidth() Optional. Width of the photo
42
42
* @method int getPhotoHeight() Optional. Height of the photo
43
43
* @method string getTitle() Optional. Title for the result
50
50
*
51
51
* @method $this setId(string $id) Unique identifier for this result, 1-64 bytes
52
52
* @method $this setPhotoUrl(string $photo_url) A valid URL of the photo. Photo must be in jpeg format. Photo size must not exceed 5MB
53
- * @method $this setThumbUrl (string $thumb_url) URL of the thumbnail for the photo
53
+ * @method $this setThumbnailUrl (string $thumbnail_url) URL of the thumbnail for the photo
54
54
* @method $this setPhotoWidth(int $photo_width) Optional. Width of the photo
55
55
* @method $this setPhotoHeight(int $photo_height) Optional. Height of the photo
56
56
* @method $this setTitle(string $title) Optional. Title for the result
Original file line number Diff line number Diff line change 24
24
* 'id' => '',
25
25
* 'video_url' => '',
26
26
* 'mime_type' => '',
27
- * 'thumb_url' => '',
27
+ * 'thumbnail_url' => '',
28
28
* 'title' => '',
29
29
* 'caption' => '',
30
30
* 'video_width' => 30,
40
40
* @method string getId() Unique identifier for this result, 1-64 bytes
41
41
* @method string getVideoUrl() A valid URL for the embedded video player or video file
42
42
* @method string getMimeType() Mime type of the content of video url, “text/html” or “video/mp4”
43
- * @method string getThumbUrl() URL of the thumbnail (jpeg only) for the video
43
+ * @method string getThumbnailUrl() URL of the thumbnail (jpeg only) for the video
44
44
* @method string getTitle() Title for the result
45
45
* @method string getCaption() Optional. Caption of the video to be sent, 0-200 characters
46
46
* @method string getParseMode() Optional. Mode for parsing entities in the video caption
55
55
* @method $this setId(string $id) Unique identifier for this result, 1-64 bytes
56
56
* @method $this setVideoUrl(string $video_url) A valid URL for the embedded video player or video file
57
57
* @method $this setMimeType(string $mime_type) Mime type of the content of video url, “text/html” or “video/mp4”
58
- * @method $this setThumbUrl (string $thumb_url) URL of the thumbnail (jpeg only) for the video
58
+ * @method $this setThumbnailUrl (string $thumbnail_url) URL of the thumbnail (jpeg only) for the video
59
59
* @method $this setTitle(string $title) Title for the result
60
60
* @method $this setCaption(string $caption) Optional. Caption of the video to be sent, 0-200 characters
61
61
* @method $this setParseMode(string $parse_mode) Optional. Mode for parsing entities in the video caption
You can’t perform that action at this time.
0 commit comments