whatsapp-multi-devicewhatsapp-apiwhatsapprestgolanggobotwhatsapp-web-multi-devicewhatsapp-api-gorest-apigolang-whatsapp-apigolang-whatsapp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
293 B
13 lines
293 B
package send
|
|
|
|
type LinkRequest struct {
|
|
Phone string `json:"phone" form:"phone"`
|
|
Caption string `json:"caption"`
|
|
Link string `json:"link"`
|
|
Type Type `json:"type" form:"type"`
|
|
}
|
|
|
|
type LinkResponse struct {
|
|
MessageID string `json:"message_id"`
|
|
Status string `json:"status"`
|
|
}
|