Layer 220
UsersSavedMusic
List of songs currently pinned on a user's profile, see here for more info.
constructor
users.savedMusic#34a2f297 count:int documents:Vector<Document> = users.SavedMusic;
Parameters
| Name | Type | Description |
|---|---|---|
| Count | int | Total number of songs (can be bigger than documents depending on the passed limit, and the default maximum limit in which case pagination is required). |
| Documents | Vector<Document> | Songs. |
Returns
users.SavedMusicGogram Example
// Creating UsersSavedMusic constructor obj := &tg.UsersSavedMusic{ Count: 0, Documents: []tg.Document{&tg.Document{}}, }