MCPcopy Create free account
hub / github.com/SakoDroid/telego / InputContactMessageContent

Struct InputContactMessageContent

objects/inputMessageContentObjects.go:76–85  ·  view source on GitHub ↗

*Represents the content of a contact message to be sent as the result of an inline query.*/

Source from the content-addressed store, hash-verified

74
75/*Represents the content of a contact message to be sent as the result of an inline query.*/
76type InputContactMessageContent struct {
77 /*Contact's phone number*/
78 PhoneNumber string `json:"phone_number"`
79 /*Contact's first name*/
80 FirstName string `json:"first_name"`
81 /*Optional. Contact's last name*/
82 LastName string `json:"last_name,omitempty"`
83 /*Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes*/
84 Vcard string `json:"vcard,omitempty"`
85}
86
87func (*InputContactMessageContent) GetType() string {
88 return "InputContactMessageContent"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected