Layer 228
constructor
keyboardButtonUrl#d80c25ec flags:# style:flags.10?KeyboardButtonStyle text:string url:string = KeyboardButton;

Parameters

Name Type Description
Style flags .10? KeyboardButtonStyle Button style, see here for more info on button styles.
Text string Button label
Url string URL

Returns

KeyboardButton

Gogram Example

// Creating KeyboardButtonUrl constructor
obj := &tg.KeyboardButtonUrl{
    Style: nil,
    Text: "Hello!",
    Url: "https://example.com",
}