Layer 224
constructor
starsGiveawayWinnersOption#54236209 flags:# default:flags.0?true users:int per_user_stars:long = StarsGiveawayWinnersOption;

Parameters

Name Type Description
Default flags.0?true If set, this option must be pre-selected by default in the option list.
Users int The number of users that will be randomly chosen as winners.
PerUserStars long The number of Telegram Stars each winner will receive.

Gogram Example

// Creating StarsGiveawayWinnersOptionObj constructor
obj := &tg.StarsGiveawayWinnersOptionObj{
    Users: 42,
    PerUserStars: int64(1234567890),

    // Optional fields:
    // Default: true,
}