Layer 220
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.

Gogram Example

// Creating UsersSavedMusic constructor
obj := &tg.UsersSavedMusic{
    Count: 0,
    Documents: []tg.Document{&tg.Document{}},
}