Layer 227
PremiumBoostsListObj
List of boosts that were applied to a peer by multiple users.
constructor
premium.boostsList#86f8613c flags:# count:int boosts:Vector<Boost> next_offset:flags.0?string users:Vector<User> = premium.BoostsList;
Parameters
| Name | Type | Description |
|---|---|---|
| Count | int | Total number of results |
| Boosts | Vector < Boost > | Boosts |
| NextOffset | flags .0? string | Offset that can be used for pagination. |
| Users | Vector < User > | Mentioned users |
Returns
premium.BoostsListGogram Example
// Creating PremiumBoostsListObj constructor obj := &tg.PremiumBoostsListObj{ Count: 42, Boosts: &tg.VectorBoost{}, NextOffset: "Hello, World!", Users: &tg.VectorUser{}, }