Layer 220
ProfileTab
Abstract type representing one of 8 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.ProfileTab interface.
Use any of the following constructors:
ProfileTabGifts
Represents the gifts tab of a profile page.
ProfileTabPosts
Represents the stories tab of a profile page.
ProfileTabMusic
Represents the music tab of a profile page.
ProfileTabVoice
Represents the voice messages tab of a profile page.
ProfileTabLinks
Represents the shared links tab of a profile page.
ProfileTabMedia
Represents the media tab of a profile page.
ProfileTabFiles
Represents the shared files tab of a profile.
ProfileTabGifs
Represents the gifs tab of a profile page.
Gogram Example
// ProfileTab is an interface type // You can use any of the following constructors: var _ tg.ProfileTab = &tg.ProfileTabGifts{} var _ tg.ProfileTab = &tg.ProfileTabPosts{} var _ tg.ProfileTab = &tg.ProfileTabMusic{} var _ tg.ProfileTab = &tg.ProfileTabVoice{} var _ tg.ProfileTab = &tg.ProfileTabLinks{} // ... and 3 more constructors