File tree Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,13 @@ class SendContact extends TelegramMethods
40
40
*/
41
41
public $ last_name = '' ;
42
42
43
+ /**
44
+ * Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes
45
+ * @see https://en.wikipedia.org/wiki/VCard
46
+ * @var string
47
+ */
48
+ public $ vcard = '' ;
49
+
43
50
/**
44
51
* Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a
45
52
* notification with no sound.
Original file line number Diff line number Diff line change @@ -38,4 +38,11 @@ class Contact extends TelegramTypes
38
38
* @var int
39
39
*/
40
40
public $ user_id = 0 ;
41
+
42
+ /**
43
+ * Optional. Additional data about the contact in the form of a vCard
44
+ * @see https://en.wikipedia.org/wiki/VCard
45
+ * @var string
46
+ */
47
+ public $ vcard = '' ;
41
48
}
Original file line number Diff line number Diff line change @@ -41,6 +41,13 @@ class Contact extends Result
41
41
*/
42
42
public $ last_name = '' ;
43
43
44
+ /**
45
+ * Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes
46
+ * @see https://en.wikipedia.org/wiki/VCard
47
+ * @var string
48
+ */
49
+ public $ vcard = '' ;
50
+
44
51
/**
45
52
* Optional. Url of the thumbnail for the result
46
53
* @var string
Original file line number Diff line number Diff line change @@ -33,4 +33,11 @@ class Contact extends InputMessageContent
33
33
* @var string
34
34
*/
35
35
public $ last_name = '' ;
36
+
37
+ /**
38
+ * Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes
39
+ * @see https://en.wikipedia.org/wiki/VCard
40
+ * @var string
41
+ */
42
+ public $ vcard = '' ;
36
43
}
You can’t perform that action at this time.
0 commit comments