Layer 224
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:
ProfileTabPosts
Represents the stories tab of a profile page.
ProfileTabGifts
Represents the gifts tab of a profile page.
ProfileTabFiles
Represents the shared files tab of a profile.
ProfileTabMedia
Represents the media tab of a profile page.
ProfileTabMusic
Represents the music tab of a profile page.
ProfileTabVoice
Represents the voice messages tab of a profile page.
ProfileTabGifs
Represents the gifs tab of a profile page.
ProfileTabLinks
Represents the shared links tab of a profile page.
Gogram Example
// ProfileTab is an interface type // You can use any of the following constructors: var _ tg.ProfileTab = &tg.ProfileTabPosts{} var _ tg.ProfileTab = &tg.ProfileTabGifts{} var _ tg.ProfileTab = &tg.ProfileTabFiles{} var _ tg.ProfileTab = &tg.ProfileTabMedia{} var _ tg.ProfileTab = &tg.ProfileTabMusic{} // ... and 3 more constructors