IGPAPI
    Preparing search index...

    Module @igpapi/android

    @igpapi/android

    Instagram private API client for Android. Covers device signals, request signatures, session handling, and a large chunk of the mobile API surface.

    yarn add @igpapi/android
    
    import { createAndroidIgpapi, AndroidPreLoginFlow, AndroidPostLoginFlow } from '@igpapi/android';

    const ig = await createAndroidIgpapi({
    seed: 'any-stable-string', // deterministic device generation
    });

    // 1. Simulate what the real app does before login
    // (QE sync, attestation, launcher sync, etc.)
    await ig.run(AndroidPreLoginFlow({ username: 'your_username' }));

    // 2. Authenticate (bloks-based — same flow the app uses)
    const profile = await ig.loginBloks({ username: 'your_username', password: 'your_password' });

    // 3. Simulate what the real app does after login
    // (timeline warmup, inbox sync, pigeon, etc.)
    await ig.run(AndroidPostLoginFlow);

    console.log(`Logged in as ${profile.username} (${profile.pk})`);

    // Now use the API
    const info = await ig.users.info({ id: profile.pk });

    ig.loginBloks is the login flow the real Instagram app uses. There's also ig.loginNative which calls the legacy /accounts/login/ endpoint — kept for reference only, don't use in production.

    ⚠️ Do not skip pre-login and post-login flows. Instagram fingerprints client behavior. Accounts that authenticate without the surrounding traffic tend to get flagged and checkpointed — sometimes within hours. These flows approximate the requests the app makes around login to reduce that risk.

    // First run — save snapshot after login
    const ig = await createAndroidIgpapi({ seed: 'my-account' });
    await ig.run(AndroidPreLoginFlow({ username }));
    await ig.loginBloks({ username, password });
    await ig.run(AndroidPostLoginFlow);
    const snapshot = ig.serialize();
    await fs.writeFile('session.json', JSON.stringify(snapshot));

    // Later — restore from snapshot, no re-login
    const saved = JSON.parse(await fs.readFile('session.json', 'utf8'));
    const ig2 = await createAndroidIgpapi({ snapshot: saved });

    createAndroidIgpapi — the only entry point you need. It returns a runtime object whose type documents every available facade and method. Hover/click through the returned type in the reference to see the full API surface without digging through files.

    createAndroidIgpapi returns a runtime with facades for every API surface:

    • ig.loginBloks — authentication (recommended); ig.loginNative — legacy, reference only
    • ig.users, ig.friendships, ig.account — profile & social graph
    • ig.activity, ig.news, ig.live, ig.clips, ig.highlights — feeds
    • ig.collections, ig.creatives, ig.restrict, ig.graphqlWww — other endpoints
    • ig.run(effect) — escape hatch for composing Effect workflows directly

    The package also re-exports everything from @igpapi/mobile for advanced use cases.

    • Node.js ≥ 22
    • IGPAPI_LICENSE_TOKEN environment variable

    Functions

    AccountConfirmEmail
    AccountLogout
    AccountRemoveProfilePicture
    AccountSetPrivate
    AccountSetPublic
    ActivityInbox
    AddKeyTotpTwoFactor
    AddressBookAcquireOwnerContacts
    AdsGraphQL
    AlbumPhotoUpload
    AlbumPost
    AlbumVideoUpload
    AllowTagsFrom
    AndroidPreLoginFlow
    Besties
    ChallengeDispatch
    challengeDispatchNavigation
    challengeDispatchRedirect
    challengeDispatchUfac
    challengeDispatchWeb
    ChallengeFetch
    challengeNavigationPost
    challengeNavigationReplay
    challengeNavigationRewind
    challengeNavigationTake
    ChallengeRedirectDismiss
    ChallengeRedirectResolve
    ChangeMutedStatus
    ChangeNotificationSettings
    ChangePassword
    ChangeProfilePicture
    checkRegistrationResponse
    CheckTrustedNotificationStatus
    ClipPost
    ClipsAssets
    ClipsWriteSeenState
    CollectionsCreate
    ConsentExistingUserFlow
    ConsentExistingUserFlowDob
    ConsentExistingUserFlowIntro
    ConsentExistingUserFlowTosAndTwoAgeButton
    ContactPointPrefill
    createAndroidIgpapi
    createMobileRuntime
    createVideoRuploadParams
    CurrentUser
    defaultServerParams
    DeleteKeyTotpTwoFactor
    DirectBroadcast
    DirectCreateGroupThread
    DirectEditMessage
    DirectGetPresence
    DirectGetPresenceActiveNow
    DirectMoveToFolder
    DirectRankedRecipients
    DirectThreadAddAdmins
    DirectThreadAddUser
    DirectThreadApprove
    DirectThreadApproveMultiple
    DirectThreadApproveParticipantRequests
    DirectThreadDecline
    DirectThreadDeclineAll
    DirectThreadDeclineMultiple
    DirectThreadDeleteItem
    DirectThreadGetByParticipants
    DirectThreadHide
    DirectThreadLeave
    DirectThreadMarkItemSeen
    DirectThreadMute
    DirectThreadRemoveAdmins
    DirectThreadRemoveUsers
    DirectThreadSetTheme
    DirectThreadShhScreenshot
    DirectThreadToggleShhMode
    DirectThreadUnmute
    DirectThreadUpdateTitle
    DisableTotpTwoFactor
    DiscoverChaining
    EditProfile
    EnableTotpTwoFactor
    extractApiPathFromSession
    extractRegContext
    felixShareMessage
    forwardMessage
    FriendshipApprove
    FriendshipBlock
    FriendshipBlockReel
    FriendshipCreate
    FriendshipDeny
    FriendshipDestroy
    FriendshipFavorite
    FriendshipFavoriteForClips
    FriendshipFavoriteForIgtv
    FriendshipFavoriteForStories
    FriendshipRemoveFollower
    FriendshipsShow
    FriendshipsShowMany
    FriendshipUnblock
    FriendshipUnblockReel
    FriendshipUnfavorite
    FriendshipUnfavoriteForClips
    FriendshipUnfavoriteForIgtv
    FriendshipUnfavoriteForStories
    GenerateTwoFactorTotpKey
    GetNotificationSettings
    GetPrefillCandidates
    getUrlAndKey
    GetViewableStatuses
    GraphqlWwwQuery
    guideMessage
    HighlightsCreateReel
    HighlightsDeleteReel
    HighlightsEditReel
    HighlightsTray
    IgtvAllUserSeries
    IgtvCreateSeries
    IgtvSearch
    IgtvSeriesAddEpisode
    IgtvWriteSeenState
    InsightsAccount
    InsightsIgtv
    InsightsPost
    isBotCaptchaCharacters
    isBotCaptchaRecaptcha
    isCompleteIntro
    isContactPoint
    isSetContactPoint
    isThanks
    LiveActivateQuestion
    LiveAddToPostLive
    LiveArchive
    LiveComment
    LiveCreate
    LiveCreateQuestion
    LiveDeactivateQuestion
    LiveDeletePostLive
    LiveEndBroadcast
    LiveGetCharityDonations
    LiveGetComment
    LiveGetFinalViewerList
    LiveGetJoinRequestCounts
    LiveGetLikeCount
    LiveGetLiveQuestions
    LiveGetPresence
    LiveGetQuestions
    LiveGetViewerList
    LiveHeartbeatAndGetViewerCount
    LiveInfo
    LiveLike
    LiveMuteComment
    LivePinComment
    LivePreLiveTools
    LiveQuestions
    LiveReact
    LiveResumeBroadcastAfterContentMatch
    LiveSetQuestionStatus
    LiveSetSubscriptionPreference
    LiveSettingsGet
    LiveSettingsSet
    LiveStart
    LiveThumbnails
    LiveUnmuteComment
    LiveUnpinComment
    LiveWave
    LocationInfo
    LocationSearch
    LocationStory
    Login
    LogoutSession
    ManuallyApproveTags
    MediaAddMentionedUser
    MediaCheckOffensiveComment
    MediaComment
    MediaCommentLike
    MediaCommentsBulkDelete
    MediaCommentsDisable
    MediaCommentsEnable
    MediaCommentUnlike
    MediaConfigure
    MediaDelete
    MediaEdit
    MediaImpression
    MediaInfo
    MediaLikers
    MediaOembed
    MediaOnlyMe
    MediaSave
    MediaSeen
    mediaShareCarouselMessage
    mediaSharePhotoMessage
    mediaShareVideoMessage
    mediaStickerResponsesFeed
    MediaStoryPollVote
    MediaStoryQuestionResponse
    MediaStoryQuizAnswer
    MediaStorySliderVote
    MediaUndoOnlyMe
    MediaUnsave
    MediaUpdateLikeAndViewCountsVisibility
    MediaUploadFinish
    MusicGenres
    MusicLyrics
    MusicMoods
    MuteAllNotifications
    NativeLogin
    NewsInbox
    NewsLog
    OneTapAppLogin
    parseBloksRedirectResponse
    parseCreateAccountResponse
    parseLoginBloksResponse
    parseMethodPickerResponse
    PhotoAttachmentMessage
    PostingCollabAccept
    PostingLive
    PostLoginFlow
    PreLoginFlow
    PrivateStoriesMembers
    PrivateStoriesSetMember
    ProcessContactPointSignals
    ProductTagGenerator
    profileMessage
    ProfileVisitFlow
    reactionMessage
    RecentSearches
    RecoveryCodeVerify
    RecoveryLookup
    RecoveryLookupPhone
    RecoveryNonceLogin
    RecoverySendEmail
    redirectScrapingWarningScreen
    ReelSettingsGet
    ReelSettingsSet
    reelShareMessage
    RegistrationCreateAccount
    RegistrationGraphqlCall
    RegistrationInitSession
    RegistrationSendCode
    RegistrationSetBirthday
    RegistrationSetName
    RegistrationSetPassword
    RegistrationSetUsername
    RegistrationVerifyCode
    RenameKeyTotpTwoFactor
    Restrict
    SearchPlaces
    SecurityInfo
    SendTwoFactorLoginSms
    SessionLoginActivity
    SessionRenew
    SetBesties
    SetBiography
    SettingsPrivacyMessagesGet
    SettingsPrivacyMessagesSet
    StoriesSeen
    StoryPost
    storyShareMessage
    StoryUploaderDmPhoto
    StoryUploaderDmVideo
    StoryUploaderTrayPhoto
    StoryUploaderTrayVideo
    SuggestedSearches
    TagsInfo
    TagsSearch
    TagsSections
    TagsStory
    textMessage
    TimelinePhotoPost
    TopsearchFlat
    TwoFactorBloksEntrypoint
    TwoFactorBloksGetMethods
    TwoFactorBloksPollTrustedNotification
    TwoFactorBloksSendWhatsAppCode
    TwoFactorBloksVerifyCode
    TwoFactorLogin
    ufacBotCaptchaCharactersScreen
    ufacBotCaptchaRecaptchaScreen
    ufacCompleteIntroScreen
    ufacContactPointScreen
    ufacController
    ufacExtractChallengeIdAndPersistedData
    ufacExtractServerParamsV2
    ufacPost
    ufacSetContactPointScreen
    Unrestrict
    UpdateProfileUsername
    UploadEndSegmentedVideo
    UploadInitVideo
    UploadPhoto
    UploadStartSegmentedVideo
    UploadVideo
    UploadVideoSegmentInit
    UploadVideoSegmentTransfer
    UsersAccountDetails
    UsersFlagUser
    UsersFormerUsernames
    UsersGetIdByUsername
    UsersInfo
    UsersInfoStream
    UsersLookup
    UsersSearch
    UsersSearchExact
    UsersSharedFollowerAccounts
    UsersStory
    UsersUsernameInfo
    UsersUsernameInfoStream
    UsersWebProfileInfo
    UsertagsRemove
    UsertagsReview
    VideoAttachmentMessage
    VoiceAttachmentMessage
    WriteSupportedCapabilities

    Classes

    ChallengeUnimplementedScreen
    ChallengeVoidScreen
    DirectStoryConfiguration
    IgChallengeNavigationSetNewPasswordTooEasyError
    IgChallengeNavigationSubmitPhoneInvalidPhoneNumberError
    IgChallengeNavigationVerifyCodeInvalidCodeError
    IgChallengeNavigationVerifyCodeReplayThrottledError
    IgChallengeUnknownResponseError
    IgExactUserNotFoundError
    LoginBloksParseError
    LoginTwoFactorRequiredError
    PasswordEncryptionKeysUnavailableError
    RedirectScrapingWarningScreen
    RedirectUnimplementedScreen
    RegistrationChallengeRequiredError
    RegistrationCreateAccountError
    RegistrationError
    RegistrationInvalidBirthdayError
    RegistrationInvalidNameError
    RegistrationInvalidPhoneError
    RegistrationSmsCodeError
    RegistrationSpamError
    RegistrationUsernameTakenError
    RegistrationWeakPasswordError
    ThreadDirectTargetConfiguration
    TrayStoryConfiguration
    TwoFactorBloksInvalidCodeError
    TwoFactorBloksLoginResponseNotFoundError
    UfacBotCaptchaCharactersScreen
    UfacBotCaptchaRecaptchaScreen
    UfacCompleteIntroScreen
    UfacContactPointScreen
    UfacSetContactPointScreen
    UfacThanksScreen
    UfacUnimplementedScreen
    UserDirectTargetConfiguration
    WebForceSetNewPasswordScreen
    WebRecaptchaRestrictScreen
    WebUnimplementedScreen

    Variables

    ActivityFacade
    AddressBookFacade
    AdsFacade
    AndroidPostLoginFlow
    archiveDayShellsFeed
    blockedUsersFeed
    ClipsFacade
    clipsHomeFeed
    clipsMusicFeed
    clipsUserFeed
    collectionFeed
    CollectionsFacade
    collectionsListFeed
    ConsentAuto
    CreativesFacade
    DirectFacade
    directInboxFeed
    directPendingInboxFeed
    directThreadFeed
    DiscoverFacade
    discoverFeed
    DiscoverProfileSuBadge
    DiscoverTopicalExplore
    followersFeed
    followingFeed
    GraphqlWwwFacade
    HighlightsFacade
    igtvBrowseFeed
    igtvChannelFeed
    IgtvFacade
    likedFeed
    LiveCreateBroadcastAudience
    LiveFacade
    LocationFacade
    locationMediaFeed
    MediaBlocked
    mediaCommentsFeed
    MediaFacade
    mediaInlineChildCommentsFeed
    MusicFacade
    musicGenreFeed
    musicMoodFeed
    musicSearchFeed
    musicTrendingFeed
    NewsFacade
    onlyMeFeed
    pendingFriendshipsFeed
    pendingTagsFeed
    PostingBuilders
    PostingFacade
    postsInsightsFeed
    productsTaggingFeed
    RedirectChallengeState
    reelMediaViewerFeed
    reelsMediaFeed
    reelsTrayFeed
    RestrictFacade
    savedFeed
    SearchFacade
    SEGMENT_DIVIDERS
    SettingsFacade
    StatusFacade
    StoriesFacade
    tagMediaFeed
    TagsFacade
    tagsSectionsFeed
    TimelineFacade
    timelineFeed
    topicalExploreFeed
    UfacChallengeState
    UploadFacade
    userMediaFeed
    UsersFacade
    userStoryFeed
    usertagsFeed
    VoidChallengeState
    WebChallengeState

    Enumerations

    ClipAudioSource
    DirectPendingInboxFilters
    DirectReactionStatusEnum
    DirectStoryViewMode
    DirectThreadTheme
    FollowersFeedOrder
    FollowingFeedOrder
    LiveQuestionSource
    LiveSubscriptionPreference
    LocationMediaFeedTab
    ReelsTrayFeedReason
    TagsSectionsFeedTab
    TagsSectionsTab
    TimelineFeedPaginationSource
    TimelineFeedReason
    TrayStoryPostAudience

    Interfaces

    AccountCommandResponse
    AccountInsightsOptions
    AccountLoginErrorResponse
    AccountLoginErrorResponseButton
    AccountLoginErrorResponsePhoneVerificationSettings
    AccountLoginErrorResponseTwoFactorInfo
    AccountLogoutResponse
    ActivityInboxResponse
    ActivityInboxResponseAdsManager
    ActivityInboxResponseArgs
    ActivityInboxResponseAymf
    ActivityInboxResponseAymfItem
    ActivityInboxResponseCounts
    ActivityInboxResponseFriendshipStatus
    ActivityInboxResponseImagesItem
    ActivityInboxResponseInlineFollow
    ActivityInboxResponseLinksItem
    ActivityInboxResponseMediaItem
    ActivityInboxResponseOldStoriesItem
    ActivityInboxResponsePartition
    ActivityInboxResponseStoryMentions
    ActivityInboxResponseTimeBucket
    ActivityInboxResponseUser
    ActivityInboxResponseUserInfo
    AddBirthdayStepData
    AddKeyTotpTwoFactorInput
    AddKeyTotpTwoFactorResponseInvalidCode
    AddKeyTotpTwoFactorResponseOk
    AddressBookAcquireOwnerContactsInput
    AddressBookAcquireOwnerContactsResponse
    AddressBookLinkInput
    AddressBookLinkResponse
    AddressBookLinkUser
    AdsGraphQLInput
    AlbumPhotoUploadInput
    AlbumPostInput
    AlbumVideoUploadInput
    ArchiveDayShellsFeedInput
    ArchiveDayShellsFeedResponse
    ArchiveDayShellsFeedResponseItemsItem
    ArchiveDayShellsFeedResponseMemories
    BestiesResponse
    BestiesResponseUsersItem
    BlockedUsersFeedInput
    BlockedUsersFeedResponse
    BlockedUsersFeedResponseBlockedListItem
    ChallengeStateResponse
    ChallengeStateResponseLoggedInUser
    ChallengeStateResponseStepData
    ChangeMutedStatusResponse
    ChangePasswordInput
    ChangePasswordResponse
    ChangeProfilePictureHDProfilePic
    ChangeProfilePictureInput
    ChangeProfilePictureResponse
    ChangeProfilePictureUser
    CheckpointResponse
    CheckpointResponseChallenge
    CheckTrustedNotificationStatusInput
    CheckTrustedNotificationStatusResponse
    ClipMusicOptions
    ClipPostInput
    ClipsAssetsInput
    ClipsAssetsResponse
    ClipsHomeFeedInput
    ClipsHomeFeedResponseAdditional_candidates
    ClipsHomeFeedResponseCandidatesItem
    ClipsHomeFeedResponseCaption
    ClipsHomeFeedResponseClips_metadata
    ClipsHomeFeedResponseFirst_frame
    ClipsHomeFeedResponseFriendship_status
    ClipsHomeFeedResponseIg_artist
    ClipsHomeFeedResponseIgtv_first_frame
    ClipsHomeFeedResponseImage_versions2
    ClipsHomeFeedResponseItemsItem
    ClipsHomeFeedResponseMedia
    ClipsHomeFeedResponseMusic_asset_info
    ClipsHomeFeedResponseMusic_consumption_info
    ClipsHomeFeedResponseMusic_info
    ClipsHomeFeedResponseOriginal_sound_info
    ClipsHomeFeedResponsePaging_info
    ClipsHomeFeedResponsePreviewCommentsItem
    ClipsHomeFeedResponseRootObject
    ClipsHomeFeedResponseUser
    ClipsHomeFeedResponseVideoVersionsItem
    ClipsMusicFeedInput
    ClipsMusicFeedResponseAdditional_candidates
    ClipsMusicFeedResponseAttribution_user
    ClipsMusicFeedResponseCandidatesItem
    ClipsMusicFeedResponseCaption
    ClipsMusicFeedResponseClips_metadata
    ClipsMusicFeedResponseCreative_config
    ClipsMusicFeedResponseEffect_action_sheet
    ClipsMusicFeedResponseEffectConfigsItem
    ClipsMusicFeedResponseFirst_frame
    ClipsMusicFeedResponseFriendship_status
    ClipsMusicFeedResponseIg_artist
    ClipsMusicFeedResponseIgtv_first_frame
    ClipsMusicFeedResponseImage_versions2
    ClipsMusicFeedResponseItemsItem
    ClipsMusicFeedResponseLikersItem
    ClipsMusicFeedResponseMedia
    ClipsMusicFeedResponseMusic_asset_info
    ClipsMusicFeedResponseMusic_consumption_info
    ClipsMusicFeedResponseMusic_info
    ClipsMusicFeedResponseOriginal_sound_info
    ClipsMusicFeedResponsePaging_info
    ClipsMusicFeedResponsePreviewCommentsItem
    ClipsMusicFeedResponseProfile_picture
    ClipsMusicFeedResponseRootObject
    ClipsMusicFeedResponseThumbnail_image
    ClipsMusicFeedResponseUser
    ClipsMusicFeedResponseVideoVersionsItem
    ClipsUserFeedInput
    ClipsUserFeedResponse
    ClipsUserFeedResponseAchievements_info
    ClipsUserFeedResponseAdditional_audio_info
    ClipsUserFeedResponseAdditional_candidates
    ClipsUserFeedResponseAudio_ranking_info
    ClipsUserFeedResponseAudio_reattribution_info
    ClipsUserFeedResponseBranded_content_tag_info
    ClipsUserFeedResponseCandidatesItem
    ClipsUserFeedResponseCaption
    ClipsUserFeedResponseClips_metadata
    ClipsUserFeedResponseCoauthorProducersItem
    ClipsUserFeedResponseComment_inform_treatment
    ClipsUserFeedResponseConsumption_info
    ClipsUserFeedResponseFan_club_info
    ClipsUserFeedResponseFirst_frame
    ClipsUserFeedResponseFriendship_status
    ClipsUserFeedResponseFundraiser_tag
    ClipsUserFeedResponseIg_artist
    ClipsUserFeedResponseIgtv_first_frame
    ClipsUserFeedResponseImage_versions2
    ClipsUserFeedResponseInItem
    ClipsUserFeedResponseItemsItem
    ClipsUserFeedResponseLocation
    ClipsUserFeedResponseMashup_info
    ClipsUserFeedResponseMedia
    ClipsUserFeedResponseMedia_cropping_info
    ClipsUserFeedResponseMusic_asset_info
    ClipsUserFeedResponseMusic_consumption_info
    ClipsUserFeedResponseMusic_info
    ClipsUserFeedResponseOriginal_sound_info
    ClipsUserFeedResponsePaging_info
    ClipsUserFeedResponseScrubber_spritesheet_info_candidates
    ClipsUserFeedResponseSharing_friction_info
    ClipsUserFeedResponseSquare_crop
    ClipsUserFeedResponseUser
    ClipsUserFeedResponseUsertags
    ClipsUserFeedResponseVideoVersionsItem
    ClipsWriteSeenStateInput
    ClipsWriteSeenStateResponse
    CollectionFeedInput
    CollectionsCreateInput
    CollectionsCreateResponse
    CollectionsFeedResponse
    CollectionsFeedResponseCandidatesItem
    CollectionsFeedResponseCaption
    CollectionsFeedResponseFbUserTags
    CollectionsFeedResponseFriendshipStatus
    CollectionsFeedResponseImageVersions2
    CollectionsFeedResponseInItem
    CollectionsFeedResponseItemsItem
    CollectionsFeedResponseLikersItem
    CollectionsFeedResponseMedia
    CollectionsFeedResponsePreviewCommentsItem
    CollectionsFeedResponseUser
    CollectionsFeedResponseUsertags
    CollectionsListFeedInput
    CollectionsListResponse
    CollectionsListResponseCandidatesItem
    CollectionsListResponseCoverMedia
    CollectionsListResponseCoverMediaListItem
    CollectionsListResponseImageVersions2
    CollectionsListResponseItemsItem
    ConfigureSidecarResponse
    ConfigureSidecarResponseCandidatesItem
    ConfigureSidecarResponseCaption
    ConfigureSidecarResponseCarouselMediaItem
    ConfigureSidecarResponseFb_user_tags
    ConfigureSidecarResponseFundraiser_tag
    ConfigureSidecarResponseImage_versions2
    ConfigureSidecarResponseMedia
    ConfigureSidecarResponseSharing_friction_info
    ConfigureSidecarResponseUser
    ConfigureSidecarResponseVideoVersionsItem
    ConsentExistingUserFlowDobInput
    ConsentExistingUserFlowResponse
    CurrentUserResponse
    CurrentUserResponseBiographyWithEntities
    CurrentUserResponseHDProfilePic
    CurrentUserResponseProfileEditParam
    CurrentUserResponseProfileEditParams
    CurrentUserResponseSupervisionInfo
    CurrentUserResponseUser
    DeleteKeyTotpTwoFactorInput
    DeleteKeyTotpTwoFactorResponse
    DeltaLoginReviewStepData
    DirectBroadcastFelixShareMessageInput
    DirectBroadcastForwardMessageInput
    DirectBroadcastGuideMessageInput
    DirectBroadcastInput
    DirectBroadcastMediaShareCarouselMessageInput
    DirectBroadcastMediaSharePhotoMessageInput
    DirectBroadcastMediaShareVideoMessageInput
    DirectBroadcastMessage
    DirectBroadcastPhotoAttachmentMessageInput
    DirectBroadcastProfileMessageInput
    DirectBroadcastReactionMessageInput
    DirectBroadcastReelShareMessageInput
    DirectBroadcastResponse
    DirectBroadcastResponseMessageMetadata
    DirectBroadcastResponsePayload
    DirectBroadcastStoryShareMessageInput
    DirectBroadcastTextMessageInput
    DirectBroadcastVideoAttachmentMessageInput
    DirectBroadcastVoiceAttachmentMessageInput
    DirectCreateGroupThreadInput
    DirectCreateGroupThreadResponse
    DirectCreateGroupThreadResponseFriendshipStatus
    DirectCreateGroupThreadResponseInviter
    DirectCreateGroupThreadResponseUsersItem
    DirectEditMessageInput
    DirectGetPresenceResponse
    DirectGetPresenceResponseUserPresence
    DirectInboxFeedInput
    DirectInboxFeedResponse
    DirectInboxFeedResponseFriendshipStatus
    DirectInboxFeedResponseInbox
    DirectInboxFeedResponseInviter
    DirectInboxFeedResponseItemsItem
    DirectInboxFeedResponseLastPermanentItem
    DirectInboxFeedResponseLinkContext
    DirectInboxFeedResponseMedia
    DirectInboxFeedResponseMostRecentInviter
    DirectInboxFeedResponsePlaceholder
    DirectInboxFeedResponseProfile
    DirectInboxFeedResponseReelShare
    DirectInboxFeedResponseThreadsItem
    DirectInboxFeedResponseUser
    DirectInboxFeedResponseUsersItem
    DirectMoveToFolderInput
    DirectPendingInboxFeedInput
    DirectRankedRecipientsInput
    DirectRankedRecipientsResponse
    DirectRankedRecipientsResponseRankedRecipientsItem
    DirectRankedRecipientsResponseThread
    DirectRankedRecipientsResponseUser
    DirectRankedRecipientsResponseUsersItem
    DirectTargetConfiguration
    DirectThreadAddUserInput
    DirectThreadAddUserResponse
    DirectThreadAddUserResponseActionLog
    DirectThreadAddUserResponseBoldItem
    DirectThreadAddUserResponseFriendshipStatus
    DirectThreadAddUserResponseInviter
    DirectThreadAddUserResponseLastPermanentItem
    DirectThreadAddUserResponseTextAttributesItem
    DirectThreadAddUserResponseThread
    DirectThreadAddUserResponseUsersItem
    DirectThreadApproveParticipantRequestsInput
    DirectThreadApproveParticipantRequestsResponse
    DirectThreadApproveParticipantRequestsResponseCandidatesItem
    DirectThreadApproveParticipantRequestsResponseFbUserTags
    DirectThreadApproveParticipantRequestsResponseFriendshipStatus
    DirectThreadApproveParticipantRequestsResponseImageVersions2
    DirectThreadApproveParticipantRequestsResponseInviter
    DirectThreadApproveParticipantRequestsResponseItemsItem
    DirectThreadApproveParticipantRequestsResponseLastPermanentItem
    DirectThreadApproveParticipantRequestsResponseLastSeenAt
    DirectThreadApproveParticipantRequestsResponseMedia
    DirectThreadApproveParticipantRequestsResponseStoryShare
    DirectThreadApproveParticipantRequestsResponseThread
    DirectThreadApproveParticipantRequestsResponseUser
    DirectThreadApproveParticipantRequestsResponseUsersItem
    DirectThreadDeleteItemInput
    DirectThreadFeedInput
    DirectThreadFeedResponse
    DirectThreadFeedResponseInviter
    DirectThreadFeedResponseItemsItem
    DirectThreadFeedResponseLastPermanentItem
    DirectThreadFeedResponseLastSeenAtEntry
    DirectThreadFeedResponseThread
    DirectThreadGetByParticipantsInput
    DirectThreadGetByParticipantsResponse
    DirectThreadGetByParticipantsResponseFriendshipStatus
    DirectThreadGetByParticipantsResponseInviter
    DirectThreadGetByParticipantsResponseItemsItem
    DirectThreadGetByParticipantsResponseLastPermanentItem
    DirectThreadGetByParticipantsResponseThread
    DirectThreadGetByParticipantsResponseUsersItem
    DirectThreadMarkItemSeenInput
    DirectThreadUpdateTitleInput
    DirectThreadUpdateTitleResponse
    DirectThreadUpdateTitleResponseActionLog
    DirectThreadUpdateTitleResponseBoldItem
    DirectThreadUpdateTitleResponseFriendshipStatus
    DirectThreadUpdateTitleResponseInviter
    DirectThreadUpdateTitleResponseItemsItem
    DirectThreadUpdateTitleResponseLastPermanentItem
    DirectThreadUpdateTitleResponseTextAttributesItem
    DirectThreadUpdateTitleResponseThread
    DirectThreadUpdateTitleResponseUsersItem
    DisableTotpTwoFactorResponse
    DiscoverChainingResponse
    DiscoverChainingResponseChainingInfo
    DiscoverChainingResponseUsersItem
    DiscoverFeedInput
    DiscoverFeedResponse
    DiscoverFeedResponseNewSuggestedUsers
    DiscoverFeedResponseSuggestedUsers
    DiscoverFeedResponseSuggestionsItem
    DiscoverFeedResponseUser
    EditProfileInput
    EscalationStepData
    FollowersFeedInput
    FollowersFeedResponse
    FollowersFeedResponseUsersItem
    FollowingFeedInput
    FollowingFeedResponse
    FollowingFeedResponseUsersItem
    FriendshipBlockReelInput
    FriendshipChangeInput
    FriendshipChangeResponse
    FriendshipsShowInput
    FriendshipsShowManyInput
    FriendshipsShowResponse
    GenerateTwoFactorTotpKeyInput
    GenerateTwoFactorTotpKeyResponse
    GetViewableStatusesResponse
    GetViewableStatusesResponseStatus
    HighlightsCreateReelInput
    HighlightsCreateReelResponse
    HighlightsDeleteReelInput
    HighlightsDeleteReelResponse
    HighlightsEditReelInput
    HighlightsEditReelResponse
    HighlightsTrayInput
    HighlightsTrayResponse
    IgtvAllUserSeriesInput
    IgtvBrowseFeedInput
    IgtvBrowseFeedResponse
    IgtvBrowseFeedResponseAdditionalCandidates
    IgtvBrowseFeedResponseBadging
    IgtvBrowseFeedResponseBiographyWithEntities
    IgtvBrowseFeedResponseBrowseItemsItem
    IgtvBrowseFeedResponseCandidatesItem
    IgtvBrowseFeedResponseCaption
    IgtvBrowseFeedResponseChannelsItem
    IgtvBrowseFeedResponseComposer
    IgtvBrowseFeedResponseExplore
    IgtvBrowseFeedResponseFriendshipStatus
    IgtvBrowseFeedResponseIgtvFirstFrame
    IgtvBrowseFeedResponseImageVersions2
    IgtvBrowseFeedResponseItem
    IgtvBrowseFeedResponseMediaCroppingInfo
    IgtvBrowseFeedResponseMyChannel
    IgtvBrowseFeedResponseSeenState
    IgtvBrowseFeedResponseThumbnails
    IgtvBrowseFeedResponseUser
    IgtvBrowseFeedResponseUserDict
    IgtvBrowseFeedResponseVideoVersionsItem
    IgtvChannelFeedInput
    IgtvChannelFeedResponse
    IgtvChannelFeedResponseAdditionalCandidates
    IgtvChannelFeedResponseBiographyWithEntities
    IgtvChannelFeedResponseCandidatesItem
    IgtvChannelFeedResponseCaption
    IgtvChannelFeedResponseFriendshipStatus
    IgtvChannelFeedResponseIgtvFirstFrame
    IgtvChannelFeedResponseImageVersions2
    IgtvChannelFeedResponseItemsItem
    IgtvChannelFeedResponseMediaCroppingInfo
    IgtvChannelFeedResponsePreviewCommentsItem
    IgtvChannelFeedResponseSeenState
    IgtvChannelFeedResponseThumbnails
    IgtvChannelFeedResponseUser
    IgtvChannelFeedResponseUserDict
    IgtvChannelFeedResponseVideoVersionsItem
    IgtvCreateSeriesInput
    IgtvSearchInput
    IgtvSearchResponse
    IgtvSearchResponseBiographyWithEntities
    IgtvSearchResponseChannel
    IgtvSearchResponseEntitiesItem
    IgtvSearchResponseFriendshipStatus
    IgtvSearchResponseHashtag
    IgtvSearchResponseResultsItem
    IgtvSearchResponseSeenState
    IgtvSearchResponseUser
    IgtvSearchResponseUserDict
    IgtvSeriesAddEpisodeInput
    IgtvWriteSeenStateInput
    IgtvWriteSeenStateResponse
    InsightsServiceAccountResponseAccount_actions_graph
    InsightsServiceAccountResponseAccount_discovery_graph
    InsightsServiceAccountResponseAccount_hashtags
    InsightsServiceAccountResponseAccount_insights_unit
    InsightsServiceAccountResponseAccount_summary_unit
    InsightsServiceAccountResponseAll_followers_age_graph
    InsightsServiceAccountResponseAymt_instagram_account_insights_channel
    InsightsServiceAccountResponseBusiness_manager
    InsightsServiceAccountResponseBusiness_profile
    InsightsServiceAccountResponseData
    InsightsServiceAccountResponseDataPointsItem
    InsightsServiceAccountResponseDaysHourlyFollowersGraphsItem
    InsightsServiceAccountResponseFollow_status
    InsightsServiceAccountResponseFollowers_top_cities_graph
    InsightsServiceAccountResponseFollowers_top_countries_graph
    InsightsServiceAccountResponseFollowers_unit
    InsightsServiceAccountResponseGender_graph
    InsightsServiceAccountResponseGraph
    InsightsServiceAccountResponseHashtags_impressions
    InsightsServiceAccountResponseHashtags_reach
    InsightsServiceAccountResponseMen_followers_age_graph
    InsightsServiceAccountResponseMetric_graph
    InsightsServiceAccountResponseNodesItem
    InsightsServiceAccountResponseOrganic
    InsightsServiceAccountResponseProfile_picture
    InsightsServiceAccountResponsePromotions_unit
    InsightsServiceAccountResponseRootObject
    InsightsServiceAccountResponseStatus
    InsightsServiceAccountResponseStories_unit
    InsightsServiceAccountResponseSummary_promotions
    InsightsServiceAccountResponseSummary_stories
    InsightsServiceAccountResponseTop_posts
    InsightsServiceAccountResponseTop_posts_unit
    InsightsServiceAccountResponseTotal_count_graph
    InsightsServiceAccountResponseUser
    InsightsServiceAccountResponseWeek_daily_followers_graph
    InsightsServiceAccountResponseWomen_followers_age_graph
    InsightsServicePostResponseActions
    InsightsServicePostResponseData
    InsightsServicePostResponseFollow_status
    InsightsServicePostResponseHashtags
    InsightsServicePostResponseHashtags_impressions
    InsightsServicePostResponseImage
    InsightsServicePostResponseImpressions
    InsightsServicePostResponseInline_insights_node
    InsightsServicePostResponseInstagram_actor
    InsightsServicePostResponseMedia
    InsightsServicePostResponseMetrics
    InsightsServicePostResponseNodesItem
    InsightsServicePostResponseOrganic
    InsightsServicePostResponsePost
    InsightsServicePostResponseProfile_actions
    InsightsServicePostResponseReach
    InsightsServicePostResponseRootObject
    InsightsServicePostResponseShare_count
    InsightsServicePostResponseSurfaces
    InsightsServicePostResponseTray
    InsightsServiceStoryResponseData
    InsightsServiceStoryResponseInline_insights_node
    InsightsServiceStoryResponseInstagram_actor
    InsightsServiceStoryResponseMedia
    InsightsServiceStoryResponseRootObject
    LikedFeedInput
    LikedFeedResponse
    LikedFeedResponseCandidatesItem
    LikedFeedResponseCaption
    LikedFeedResponseFriendship_status
    LikedFeedResponseImage_versions2
    LikedFeedResponseInItem
    LikedFeedResponseItemsItem
    LikedFeedResponseLocation
    LikedFeedResponsePreviewCommentsItem
    LikedFeedResponseUser
    LikedFeedResponseUsertags
    ListReelMediaViewerFeedResponseBiography_with_entities
    ListReelMediaViewerFeedResponseCandidatesItem
    ListReelMediaViewerFeedResponseCharity
    ListReelMediaViewerFeedResponseChat_sticker
    ListReelMediaViewerFeedResponseConsumption_sheet_config
    ListReelMediaViewerFeedResponseCreative_config
    ListReelMediaViewerFeedResponseDonation_amount_config
    ListReelMediaViewerFeedResponseDonations
    ListReelMediaViewerFeedResponseFb_user_tags
    ListReelMediaViewerFeedResponseFriendship_status
    ListReelMediaViewerFeedResponseFundraiser_sticker
    ListReelMediaViewerFeedResponseHashtag
    ListReelMediaViewerFeedResponseImage_versions2
    ListReelMediaViewerFeedResponseLocation
    ListReelMediaViewerFeedResponseReelMentionsItem
    ListReelMediaViewerFeedResponseRequester_usernames
    ListReelMediaViewerFeedResponseRootObject
    ListReelMediaViewerFeedResponseStoryChatRequestInfosItem
    ListReelMediaViewerFeedResponseStoryChatsItem
    ListReelMediaViewerFeedResponseStoryFundraiserDonationInfosItem
    ListReelMediaViewerFeedResponseStoryFundraisersItem
    ListReelMediaViewerFeedResponseStoryHashtagsItem
    ListReelMediaViewerFeedResponseStoryLocationsItem
    ListReelMediaViewerFeedResponseUpdated_media
    ListReelMediaViewerFeedResponseUser
    ListReelMediaViewerFeedResponseUsersItem
    ListReelMediaViewerFeedResponseViewersItem
    LiveAddToPostBroadcast
    LiveAddToPostBroadcastOwner
    LiveAddToPostFriendshipStatus
    LiveAddToPostResponse
    LiveAddToPostUser
    LiveCommentsResponse
    LiveCommentsResponseCommentsItem
    LiveCommentsResponseSystemCommentsItem
    LiveCommentsResponseUser
    LiveCreateInput
    LiveCreateResponse
    LiveCreateResponseStreamInitialBitratePrediction
    LiveFinalViewersResponse
    LiveFinalViewersResponseUsersItem
    LiveGetCommentInput
    LiveGetJoinRequestCountsInput
    LiveGetQuestionsResponse
    LiveGetQuestionsResponseQuestionsItem
    LiveGetQuestionsResponseUser
    LiveHeartbeatViewerCountResponse
    LiveInfoResponse
    LiveInfoResponseBroadcastOwner
    LiveInfoResponseFriendshipStatus
    LiveJoinRequestCountsResponse
    LiveJoinRequestCountsResponseUsersItem
    LiveLikeCountResponse
    LiveLikeResponse
    LiveReactInput
    LiveReactResponse
    LiveRtmpSettings
    LiveSettingsGetResponse
    LiveSettingsGetResponseBlocked
    LiveSettingsSetInput
    LiveStartBroadcastResponse
    LiveSwitchCommentsResponse
    LiveThumbnailsInput
    LiveThumbnailsResponse
    LiveViewerListResponse
    LiveViewerListResponseUsersItem
    LocationInfoResponse
    LocationInfoResponseLocation
    LocationMediaFeedInput
    LocationMediaFeedResponse
    LocationMediaFeedResponseCandidatesItem
    LocationMediaFeedResponseCaption
    LocationMediaFeedResponseCarouselMediaItem
    LocationMediaFeedResponseExploreItemInfo
    LocationMediaFeedResponseFriendshipStatus
    LocationMediaFeedResponseImageVersions2
    LocationMediaFeedResponseInItem
    LocationMediaFeedResponseLayoutContent
    LocationMediaFeedResponseLocation
    LocationMediaFeedResponseMedia
    LocationMediaFeedResponseMediasItem
    LocationMediaFeedResponsePreviewCommentsItem
    LocationMediaFeedResponseSectionsItem
    LocationMediaFeedResponseUser
    LocationMediaFeedResponseUsertags
    LocationMediaFeedResponseVideoVersionsItem
    LocationSearchInput
    LocationSearchResponse
    LocationSearchResponseVenuesItem
    LocationStoryResponse
    LocationStoryResponseCandidatesItem
    LocationStoryResponseHashtag
    LocationStoryResponseImageVersions2
    LocationStoryResponseItemsItem
    LocationStoryResponseLocation
    LocationStoryResponseLocationDict
    LocationStoryResponseOwner
    LocationStoryResponseReelMentionsItem
    LocationStoryResponseStory
    LocationStoryResponseStoryHashtagsItem
    LocationStoryResponseStoryLocationsItem
    LocationStoryResponseUser
    LocationStoryResponseVideoVersionsItem
    LoginBloksParsed
    LoginInput
    LoginOverrides
    LoginRequiredResponse
    LoginResponse
    LogoutSessionInput
    LogoutSessionResponse
    MediaAddMentionedUserInput
    MediaAddMentionedUserResponse
    MediaAddMentionedUserResponseMentionedUser
    MediaBlockedResponse
    MediaCheckOffensiveCommentInput
    MediaCheckOffensiveCommentResponse
    MediaClipOverlay
    MediaClipSegment
    MediaCommentInput
    MediaCommentLikeOptions
    MediaCommentLikeResponse
    MediaCommentResponse
    MediaCommentResponseComment
    MediaCommentResponseUser
    MediaCommentsBulkDeleteInput
    MediaCommentsBulkDeleteResponse
    MediaCommentsFeedInput
    MediaCommentsFeedResponse
    MediaCommentsFeedResponseCaption
    MediaCommentsFeedResponseCommentsItem
    MediaCommentsFeedResponseOtherPreviewUsersItem
    MediaCommentsFeedResponsePreviewChildCommentsItem
    MediaCommentsFeedResponsePreviewCommentsItem
    MediaCommentsFeedResponseQuickResponseEmojisItem
    MediaCommentsFeedResponseUser
    MediaConfigureResponseCandidatesItem
    MediaConfigureResponseFb_user_tags
    MediaConfigureResponseImage_versions2
    MediaConfigureResponseMedia
    MediaConfigureResponseRootObject
    MediaConfigureResponseUser
    MediaConfigureToClipsOptions
    MediaDeleteInput
    MediaEditInput
    MediaImpressionInput
    MediaInfoAlbumResponse
    MediaInfoAlbumResponseAttribution_user
    MediaInfoAlbumResponseCandidatesItem
    MediaInfoAlbumResponseCaption
    MediaInfoAlbumResponseCarouselMediaItem
    MediaInfoAlbumResponseComment_inform_treatment
    MediaInfoAlbumResponseCreative_config
    MediaInfoAlbumResponseEffect_action_sheet
    MediaInfoAlbumResponseEffect_preview
    MediaInfoAlbumResponseFan_club_info
    MediaInfoAlbumResponseFriendship_status
    MediaInfoAlbumResponseFundraiser_tag
    MediaInfoAlbumResponseImage_versions2
    MediaInfoAlbumResponseInItem
    MediaInfoAlbumResponseItemsItem
    MediaInfoAlbumResponseMusic_metadata
    MediaInfoAlbumResponsePreviewCommentsItem
    MediaInfoAlbumResponseProfile_picture
    MediaInfoAlbumResponseSharing_friction_info
    MediaInfoAlbumResponseThumbnail_image
    MediaInfoAlbumResponseUser
    MediaInfoAlbumResponseUsertags
    MediaInfoAlbumResponseVideoVersionsItem
    MediaInfoClipResponse
    MediaInfoClipResponseAchievements_info
    MediaInfoClipResponseAdditional_audio_info
    MediaInfoClipResponseAdditional_candidates
    MediaInfoClipResponseAudio_ranking_info
    MediaInfoClipResponseAudio_reattribution_info
    MediaInfoClipResponseBranded_content_tag_info
    MediaInfoClipResponseCandidatesItem
    MediaInfoClipResponseCaption
    MediaInfoClipResponseClips_metadata
    MediaInfoClipResponseComment_inform_treatment
    MediaInfoClipResponseConsumption_info
    MediaInfoClipResponseFan_club_info
    MediaInfoClipResponseFirst_frame
    MediaInfoClipResponseFriendship_status
    MediaInfoClipResponseFundraiser_tag
    MediaInfoClipResponseIg_artist
    MediaInfoClipResponseIgtv_first_frame
    MediaInfoClipResponseImage_versions2
    MediaInfoClipResponseInItem
    MediaInfoClipResponseItemsItem
    MediaInfoClipResponseLocation
    MediaInfoClipResponseMashup_info
    MediaInfoClipResponseMedia_appreciation_settings
    MediaInfoClipResponseMedia_cropping_info
    MediaInfoClipResponseOriginal_sound_info
    MediaInfoClipResponsePreviewCommentsItem
    MediaInfoClipResponseSharing_friction_info
    MediaInfoClipResponseSquare_crop
    MediaInfoClipResponseUser
    MediaInfoClipResponseUsertags
    MediaInfoClipResponseVideoVersionsItem
    MediaInfoInput
    MediaInfoPictureResponse
    MediaInfoPictureResponseCandidatesItem
    MediaInfoPictureResponseCaption
    MediaInfoPictureResponseComment_inform_treatment
    MediaInfoPictureResponseFan_club_info
    MediaInfoPictureResponseFriendship_status
    MediaInfoPictureResponseFundraiser_tag
    MediaInfoPictureResponseImage_versions2
    MediaInfoPictureResponseInItem
    MediaInfoPictureResponseItemsItem
    MediaInfoPictureResponseMashup_info
    MediaInfoPictureResponseMusic_metadata
    MediaInfoPictureResponseSharing_friction_info
    MediaInfoPictureResponseUser
    MediaInfoPictureResponseUsertags
    MediaInfoVideoResponse
    MediaInfoVideoResponseCandidatesItem
    MediaInfoVideoResponseComment_inform_treatment
    MediaInfoVideoResponseFan_club_info
    MediaInfoVideoResponseFriendship_status
    MediaInfoVideoResponseFundraiser_tag
    MediaInfoVideoResponseImage_versions2
    MediaInfoVideoResponseItemsItem
    MediaInfoVideoResponseMashup_info
    MediaInfoVideoResponseMusic_metadata
    MediaInfoVideoResponseSharing_friction_info
    MediaInfoVideoResponseUser
    MediaInfoVideoResponseVideoVersionsItem
    MediaInlineChildCommentsFeedInput
    MediaInlineChildCommentsFeedResponse
    MediaInlineChildCommentsFeedResponseChildCommentsItem
    MediaInlineChildCommentsFeedResponseParent_comment
    MediaInlineChildCommentsFeedResponseUser
    MediaLikersResponse
    MediaLikersResponseUsersItem
    MediaMusicParams
    MediaOembedResponse
    MediaOnlyMeResponse
    MediaRepositoryConfigureToClipsResponseAdditional_candidates
    MediaRepositoryConfigureToClipsResponseCandidatesItem
    MediaRepositoryConfigureToClipsResponseCaption
    MediaRepositoryConfigureToClipsResponseClips_metadata
    MediaRepositoryConfigureToClipsResponseFirst_frame
    MediaRepositoryConfigureToClipsResponseIg_artist
    MediaRepositoryConfigureToClipsResponseIgtv_first_frame
    MediaRepositoryConfigureToClipsResponseImage_versions2
    MediaRepositoryConfigureToClipsResponseMedia
    MediaRepositoryConfigureToClipsResponseMusic_asset_info
    MediaRepositoryConfigureToClipsResponseMusic_consumption_info
    MediaRepositoryConfigureToClipsResponseMusic_info
    MediaRepositoryConfigureToClipsResponseOriginal_sound_info
    MediaRepositoryConfigureToClipsResponseRootObject
    MediaRepositoryConfigureToClipsResponseUser
    MediaRepositoryConfigureToClipsResponseVideoVersionsItem
    MediaSaveOptions
    MediaSeenInput
    MediaSeenResponse
    MediaStickerResponsesFeedConfig
    MediaStickerResponsesFeedInput
    MediaStoryPollVoteInput
    MediaStoryQuestionResponseInput
    MediaStoryQuestionResponseResponse
    MediaStoryQuizAnswerInput
    MediaStorySliderVoteInput
    MediaUpdatedMedia
    MediaUpdatedMediaCandidatesItem
    MediaUpdatedMediaCaption
    MediaUpdatedMediaCreative_config
    MediaUpdatedMediaFriendship_status
    MediaUpdatedMediaImage_versions2
    MediaUpdatedMediaPoll_sticker
    MediaUpdatedMediaResponse
    MediaUpdatedMediaStoryPollsItem
    MediaUpdatedMediaTalliesItem
    MediaUpdatedMediaUser
    MediaUpdateLikeAndViewCountsVisibilityInput
    MediaUpdateLikeAndViewCountsVisibilityResponse
    MediaUploadFinishInput
    MediaUploadFinishInputVideo
    MobileRuntimeState
    MusicGenreFeedInput
    MusicGenreFeedResponse
    MusicGenreFeedResponseItem
    MusicGenreFeedResponsePageInfo
    MusicGenreFeedResponseTrack
    MusicGenresInput
    MusicGenresResponse
    MusicGenresResponseGenre
    MusicGenresResponseItem
    MusicLyricsInput
    MusicLyricsResponse
    MusicLyricsResponseLyrics
    MusicLyricsResponsePhrase
    MusicMoodFeedInput
    MusicMoodFeedResponse
    MusicMoodFeedResponseItem
    MusicMoodFeedResponsePageInfo
    MusicMoodFeedResponseTrack
    MusicMoodsInput
    MusicMoodsResponse
    MusicMoodsResponseItem
    MusicMoodsResponseMood
    MusicRemixParams
    MusicSearchFeedInput
    MusicSearchFeedResponse
    MusicSearchFeedResponseItem
    MusicSearchFeedResponseMetadata
    MusicSearchFeedResponsePageInfo
    MusicSearchFeedResponseTrack
    MusicTrendingFeedInput
    MusicTrendingFeedResponse
    MusicTrendingFeedResponseItem
    MusicTrendingFeedResponsePageInfo
    MusicTrendingFeedResponseTrack
    NativeLoginInput
    NativeLoginResponse
    NativeLoginResponseLoggedInUser
    NativeLoginResponseNametag
    NewsInboxResponse
    NewsInboxResponseAdsManager
    NewsInboxResponseArgs
    NewsInboxResponseAymf
    NewsInboxResponseAymfItem
    NewsInboxResponseBusinessProfileReminder
    NewsInboxResponseCounts
    NewsInboxResponseHashtagFollow
    NewsInboxResponseLinksItem
    NewsInboxResponseMediaItem
    NewsInboxResponseNewStoriesItem
    NewsInboxResponseOldStoriesItem
    NewsInboxResponsePartition
    NewsInboxResponseTimeBucket
    NewsInboxResponseUser
    NewsLogInput
    NewsLogResponse
    OneTapAppLoginResponse
    OneTapAppLoginResponseLoggedInUser
    OnlyMeFeedInput
    OnlyMeFeedResponse
    OnlyMeFeedResponseCandidatesItem
    OnlyMeFeedResponseCaption
    OnlyMeFeedResponseFb_user_tags
    OnlyMeFeedResponseImage_versions2
    OnlyMeFeedResponseItemsItem
    OnlyMeFeedResponseLikersItem
    OnlyMeFeedResponseUser
    PendingFriendshipsFeedInput
    PendingFriendshipsFeedResponse
    PendingFriendshipsFeedResponseSuggestedUsers
    PendingFriendshipsFeedResponseSuggestion
    PendingFriendshipsFeedResponseSuggestionUser
    PendingFriendshipsFeedResponseUsersItem
    PostingCollabAcceptInput
    PostingLiveConfigureTranscodeNotFinishedResponse
    PostingLiveInput
    PostingLocation
    PostingProductTag
    PostingUsertag
    PostsInsightsFeedInput
    PostsInsightsFeedOptions
    PostsInsightsFeedResponse
    PostsInsightsFeedResponseActions
    PostsInsightsFeedResponseBusiness_manager
    PostsInsightsFeedResponseData
    PostsInsightsFeedResponseEdgesItem
    PostsInsightsFeedResponseImage
    PostsInsightsFeedResponseInline_insights_node
    PostsInsightsFeedResponseMetrics
    PostsInsightsFeedResponseNode
    PostsInsightsFeedResponsePage_info
    PostsInsightsFeedResponseProfile_actions
    PostsInsightsFeedResponseShare_count
    PostsInsightsFeedResponseTop_posts
    PostsInsightsFeedResponseTop_posts_unit
    PostsInsightsFeedResponseTray
    PostsInsightsFeedResponseUser
    PrivateStoriesMembersInput
    PrivateStoriesMembersResponse
    PrivateStoriesMembersResponseMember
    PrivateStoriesSetMemberInput
    ProductsTaggingFeedInput
    ProductsTaggingFeedResponse
    ProductsTaggingFeedResponseCandidatesItem
    ProductsTaggingFeedResponseColorRangesItem
    ProductsTaggingFeedResponseCommerce_item_meta
    ProductsTaggingFeedResponseCommerce_review_statistics
    ProductsTaggingFeedResponseComponentFeedItem
    ProductsTaggingFeedResponseDivider_meta
    ProductsTaggingFeedResponseGoodnessItem
    ProductsTaggingFeedResponseHeader
    ProductsTaggingFeedResponseImage_quality_metadata
    ProductsTaggingFeedResponseImage_thumbnail_meta
    ProductsTaggingFeedResponseImage_versions2
    ProductsTaggingFeedResponseInlineStyleRangesItem
    ProductsTaggingFeedResponseItem
    ProductsTaggingFeedResponseLifestyleBackgroundItem
    ProductsTaggingFeedResponseLogging_meta
    ProductsTaggingFeedResponseMain_image
    ProductsTaggingFeedResponseMerchant
    ProductsTaggingFeedResponseMeta
    ProductsTaggingFeedResponsePrimary_text
    ProductsTaggingFeedResponseProduct
    ProductsTaggingFeedResponseSecondary_text
    ProductsTaggingFeedResponseThumbnail
    ProductsTaggingFeedResponseThumbnail_image
    ProductsTaggingFeedResponseTitle_meta
    ProductsTaggingFeedResponseUntaggable_reason
    ProductTagGeneratorInput
    RecentSearchesResponse
    RecentSearchesResponseHashtag
    RecentSearchesResponseItem
    RecentSearchesResponseLocation
    RecentSearchesResponsePlace
    RecentSearchesResponseUser
    RecoveryCodeVerifyInput
    RecoveryCodeVerifyResponse
    RecoveryCodeVerifyResponseUser
    RecoveryLookupByPhoneResponse
    RecoveryLookupByUsernameResponse
    RecoveryLookupByUsernameResponseUser
    RecoveryLookupInput
    RecoveryLookupPhoneInput
    RecoveryLookupPhoneResponse
    RecoveryNonceLoginInput
    RecoveryNonceLoginResponse
    RecoveryNonceLoginResponseLoggedInUser
    RecoverySendEmailInput
    RecoverySendEmailResponse
    RedirectResolveResult
    ReelMediaViewerFeedInput
    ReelSettingsGetResponse
    ReelSettingsGetResponseList
    ReelSettingsSetInput
    ReelsMediaFeedInput
    ReelsMediaFeedResponse
    ReelsMediaFeedResponseCandidatesItem
    ReelsMediaFeedResponseCountdown_sticker
    ReelsMediaFeedResponseFriendshipStatus
    ReelsMediaFeedResponseImageVersions2
    ReelsMediaFeedResponseItem
    ReelsMediaFeedResponseLinksItem
    ReelsMediaFeedResponsePollSticker
    ReelsMediaFeedResponseQuestionSticker
    ReelsMediaFeedResponseQuizSticker
    ReelsMediaFeedResponseReelMentionsItem
    ReelsMediaFeedResponseReels
    ReelsMediaFeedResponseRootObject
    ReelsMediaFeedResponseSliderSticker
    ReelsMediaFeedResponseStoryCountdownsItem
    ReelsMediaFeedResponseStoryCtaItem
    ReelsMediaFeedResponseStoryPollsItem
    ReelsMediaFeedResponseStoryQuestionsItem
    ReelsMediaFeedResponseStoryQuizsItem
    ReelsMediaFeedResponseStorySlidersItem
    ReelsMediaFeedResponseTalliesItem
    ReelsMediaFeedResponseUser
    ReelsMediaFeedResponseVideoVersionsItem
    ReelsTrayFeedRequestInput
    ReelsTrayFeedResponseAttribution
    ReelsTrayFeedResponseBroadcast_owner
    ReelsTrayFeedResponseBroadcastsItem
    ReelsTrayFeedResponseCandidatesItem
    ReelsTrayFeedResponseCreative_config
    ReelsTrayFeedResponseFriendship_status
    ReelsTrayFeedResponseImage_versions2
    ReelsTrayFeedResponseItemsItem
    ReelsTrayFeedResponseLocation
    ReelsTrayFeedResponsePoll_sticker
    ReelsTrayFeedResponseQuestion_sticker
    ReelsTrayFeedResponseQuiz_sticker
    ReelsTrayFeedResponseReelMentionsItem
    ReelsTrayFeedResponseRootObject
    ReelsTrayFeedResponseStoryLocationsItem
    ReelsTrayFeedResponseStoryPollsItem
    ReelsTrayFeedResponseStoryQuestionsItem
    ReelsTrayFeedResponseStoryQuizsItem
    ReelsTrayFeedResponseTalliesItem
    ReelsTrayFeedResponseTrayItem
    ReelsTrayFeedResponseUser
    ReelsTrayFeedResponseVideoVersionsItem
    RegistrationContext
    RegistrationCreateAccountInput
    RegistrationCreateAccountOutput
    RegistrationSendCodeInput
    RegistrationSetBirthdayInput
    RegistrationSetNameInput
    RegistrationSetPasswordInput
    RegistrationSetUsernameInput
    RegistrationVerifyCodeInput
    RenameKeyTotpTwoFactorInput
    RenameKeyTotpTwoFactorResponse
    RestrictActionFriendshipStatus
    RestrictActionInput
    RestrictActionResponse
    RestrictActionUser
    ReviewContactPointChangeStepData
    SavedFeedInput
    SavedFeedResponse
    SavedFeedResponseCandidatesItem
    SavedFeedResponseCaption
    SavedFeedResponseCarouselMediaItem
    SavedFeedResponseFriendship_status
    SavedFeedResponseImage_versions2
    SavedFeedResponseInItem
    SavedFeedResponseItemsItem
    SavedFeedResponseMain_image
    SavedFeedResponseMedia
    SavedFeedResponseMerchant
    SavedFeedResponsePreviewCommentsItem
    SavedFeedResponseProduct
    SavedFeedResponseProduct_tags
    SavedFeedResponseThumbnail_image
    SavedFeedResponseUser
    SavedFeedResponseUsertags
    SavedFeedResponseVariantValuesItem
    SavedFeedResponseVideoVersionsItem
    SearchPlacesInput
    SearchPlacesResponse
    SearchPlacesResponseHeaderMedia
    SearchPlacesResponseItem
    SearchPlacesResponseLocation
    SecurityInfoResponse
    SecurityInfoResponseTotpSeed
    SecurityInfoResponseTrustedDevice
    SelectContactPointRecoveryStepData
    SelectVerifyMethodStepData
    SendTwoFactorLoginSmsInput
    SendTwoFactorLoginSmsResponse
    SendTwoFactorLoginSmsTwoFactorInfo
    SessionLoginActivityResponse
    SessionLoginActivitySession
    SessionLoginActivitySuspiciousLogin
    SetBestiesInput
    SetBestiesResponse
    SetBestiesResponseItem
    SetNewPasswordStepData
    SettingsPrivacyMessagesConfig
    SettingsPrivacyMessagesGetResponse
    SettingsPrivacyMessagesSetResponse
    SpamResponse
    StatusResponse
    StoriesSeenItem
    StoriesSeenOptions
    StoriesSeenReels
    StoryConfiguration
    StoryPollVotersFeedResponseFriendship_status
    StoryPollVotersFeedResponseRootObject
    StoryPollVotersFeedResponseUser
    StoryPollVotersFeedResponseVoter_info
    StoryPollVotersFeedResponseVotersItem
    StoryPositionedItem
    StoryPostInput
    StoryPostPhotoResponse
    StoryPostPhotoResponseCandidatesItem
    StoryPostPhotoResponseCrosspost_metadata
    StoryPostPhotoResponseFb_downstream_use_xpost_metadata
    StoryPostPhotoResponseFundraiser_tag
    StoryPostPhotoResponseGen_ai_detection_method
    StoryPostPhotoResponseImage_versions2
    StoryPostPhotoResponseMedia
    StoryPostPhotoResponseSharing_friction_info
    StoryPostPhotoResponseUser
    StoryPostPhotoResponseUser_activation_info
    StoryPostVideoResponse
    StoryPostVideoResponseCandidatesItem
    StoryPostVideoResponseCrosspost_metadata
    StoryPostVideoResponseFb_downstream_use_xpost_metadata
    StoryPostVideoResponseFundraiser_tag
    StoryPostVideoResponseGen_ai_detection_method
    StoryPostVideoResponseImage_versions2
    StoryPostVideoResponseMedia
    StoryPostVideoResponseSharing_friction_info
    StoryPostVideoResponseUser
    StoryPostVideoResponseUser_activation_info
    StoryPostVideoResponseVideoVersionsItem
    StoryQuestionResponsesFeedResponseResponder_info
    StoryQuestionResponsesFeedResponseRespondersItem
    StoryQuestionResponsesFeedResponseRootObject
    StoryQuestionResponsesFeedResponseUser
    StoryQuizParticipantsFeedResponseParticipant_info
    StoryQuizParticipantsFeedResponseParticipantsItem
    StoryQuizParticipantsFeedResponseRootObject
    StoryQuizParticipantsFeedResponseUser
    StorySliderVotersFeedResponseFriendship_status
    StorySliderVotersFeedResponseRootObject
    StorySliderVotersFeedResponseUser
    StorySliderVotersFeedResponseVoter_info
    StorySliderVotersFeedResponseVotersItem
    StoryUploaderDmPhotoInput
    StoryUploaderDmVideoInput
    StoryUploaderTrayPhotoInput
    StoryUploaderTrayVideoInput
    SuggestedSearchesInput
    SuggestedSearchesResponse
    SuggestedSearchesResponseHashtag
    SuggestedSearchesResponseItem
    SuggestedSearchesResponseLocation
    SuggestedSearchesResponsePlace
    SuggestedSearchesResponseUser
    TagMediaFeedInput
    TagMediaFeedResponse
    TagMediaFeedResponseAttribution
    TagMediaFeedResponseCandidatesItem
    TagMediaFeedResponseCaption
    TagMediaFeedResponseCarouselMediaItem
    TagMediaFeedResponseCreativeConfig
    TagMediaFeedResponseFriendshipStatus
    TagMediaFeedResponseHashtag
    TagMediaFeedResponseImageVersions2
    TagMediaFeedResponseInItem
    TagMediaFeedResponseItemsItem
    TagMediaFeedResponseLikersItem
    TagMediaFeedResponseLocation
    TagMediaFeedResponseOwner
    TagMediaFeedResponsePreviewCommentsItem
    TagMediaFeedResponseRankedItemsItem
    TagMediaFeedResponseReelMentionsItem
    TagMediaFeedResponseStory
    TagMediaFeedResponseStoryHashtagsItem
    TagMediaFeedResponseStoryLocationsItem
    TagMediaFeedResponseUser
    TagMediaFeedResponseUsertags
    TagMediaFeedResponseVideoVersionsItem
    TagsInfoInput
    TagsInfoResponse
    TagsSearchInput
    TagsSearchResponse
    TagsSearchResponseResultsItem
    TagsSectionsFeedInput
    TagsSectionsFeedResponse
    TagsSectionsFeedResponseCandidatesItem
    TagsSectionsFeedResponseCaption
    TagsSectionsFeedResponseCarouselMediaItem
    TagsSectionsFeedResponseExploreItemInfo
    TagsSectionsFeedResponseFriendshipStatus
    TagsSectionsFeedResponseImageVersions2
    TagsSectionsFeedResponseInItem
    TagsSectionsFeedResponseLayoutContent
    TagsSectionsFeedResponseMedia
    TagsSectionsFeedResponseMediasItem
    TagsSectionsFeedResponsePreviewCommentsItem
    TagsSectionsFeedResponseSectionsItem
    TagsSectionsFeedResponseTags
    TagsSectionsFeedResponseUser
    TagsSectionsFeedResponseUsertags
    TagsSectionsFeedResponseVideoVersionsItem
    TagsSectionsInput
    TagsSectionsResponse
    TagsSectionsResponseSectionsItem
    TagsStoryInput
    TagsStoryResponse
    TagsStoryResponseCandidatesItem
    TagsStoryResponseHashtag
    TagsStoryResponseImageVersions2
    TagsStoryResponseItemsItem
    TagsStoryResponseLocation
    TagsStoryResponseOwner
    TagsStoryResponsePollsItem
    TagsStoryResponsePollSticker
    TagsStoryResponsePollStickerTally
    TagsStoryResponseReelMentionsItem
    TagsStoryResponseStory
    TagsStoryResponseStoryFeedMediaItem
    TagsStoryResponseStoryHashtagsItem
    TagsStoryResponseStoryLocationsItem
    TagsStoryResponseStoryMusicStickersItem
    TagsStoryResponseStoryMusicStickersMusicAssetInfo
    TagsStoryResponseUser
    TagsStoryResponseVideoVersionsItem
    TimelineFeedRequestInput
    TimelineFeedResponse
    TimelineFeedResponseAdMetadataItem
    TimelineFeedResponseAndroidLinksItem
    TimelineFeedResponseCandidatesItem
    TimelineFeedResponseCaption
    TimelineFeedResponseCarouselMediaItem
    TimelineFeedResponseClientGapEnforcerMatrixItem
    TimelineFeedResponseFacepileTopLikersItem
    TimelineFeedResponseFeedItemsItem
    TimelineFeedResponseFriendshipStatus
    TimelineFeedResponseHeadline
    TimelineFeedResponseHideReasonsV2Item
    TimelineFeedResponseImageVersions2
    TimelineFeedResponseInItem
    TimelineFeedResponseInjected
    TimelineFeedResponseLocation
    TimelineFeedResponseMediaOrAd
    TimelineFeedResponsePaginationInfo
    TimelineFeedResponsePreviewCommentsItem
    TimelineFeedResponseStoriesNetego
    TimelineFeedResponseUser
    TimelineFeedResponseUsertags
    TimelineFeedResponseVideoVersionsItem
    TimelineFeedViewInfo
    TimelinePhotoPostInput
    TopicalExploreFeedInput
    TopicalExploreFeedResponse
    TopicalExploreFeedResponseCandidatesItem
    TopicalExploreFeedResponseCaption
    TopicalExploreFeedResponseCarouselMediaItem
    TopicalExploreFeedResponseClustersItem
    TopicalExploreFeedResponseExplore
    TopicalExploreFeedResponseExploreItemInfo
    TopicalExploreFeedResponseFillItemsItem
    TopicalExploreFeedResponseFriendshipStatus
    TopicalExploreFeedResponseImageVersions2
    TopicalExploreFeedResponseInItem
    TopicalExploreFeedResponseItemsItem
    TopicalExploreFeedResponseLayoutContent
    TopicalExploreFeedResponseLocation
    TopicalExploreFeedResponseMedia
    TopicalExploreFeedResponseMediasItem
    TopicalExploreFeedResponseOneByTwoItem
    TopicalExploreFeedResponseQuestionSticker
    TopicalExploreFeedResponseSectionalItemsItem
    TopicalExploreFeedResponseSeedReel
    TopicalExploreFeedResponseStories
    TopicalExploreFeedResponseStoryQuestionsItem
    TopicalExploreFeedResponseTwoByTwoItem
    TopicalExploreFeedResponseUser
    TopicalExploreFeedResponseUsertags
    TopicalExploreFeedResponseVideoVersionsItem
    TopsearchFlatInput
    TopsearchFlatResponse
    TopsearchFlatResponseFriendshipStatus
    TopsearchFlatResponseHashtag
    TopsearchFlatResponseHeaderMedia
    TopsearchFlatResponseListItem
    TopsearchFlatResponseLocation
    TopsearchFlatResponsePlace
    TopsearchFlatResponseUser
    TwoFactorBloksEntrypointInput
    TwoFactorBloksGetMethodsInput
    TwoFactorBloksPollTrustedNotificationInput
    TwoFactorBloksSendWhatsAppCodeInput
    TwoFactorBloksSendWhatsAppCodeOutput
    TwoFactorBloksVerifyCodeInput
    TwoFactorLoginInput
    TwoFactorLoginResponse
    TwoFactorLoginResponseLoggedInUser
    UfacRequestParams
    UfacResponse
    UpdateBioLinksInput
    UpdateProfileUsernameInput
    UpdateProfileUsernameResponse
    UpdateProfileUsernameResponseUser
    UploadInitVideoInput
    UploadInitVideoResponse
    UploadPhotoInput
    UploadPhotoResponse
    UploadPhotoXsharingNonces
    UploadRetryContext
    UploadSegmentedVideoOptions
    UploadStartSegmentedVideoResponse
    UploadVideoInput
    UploadVideoResponse
    UploadVideoSegmentInitInput
    UploadVideoSegmentInitResponse
    UploadVideoSegmentTransferInput
    UploadVideoXsharingNonces
    UserFeedInput
    UserFeedResponse
    UserFeedResponseUser
    UsersInfoResponse
    UsersInfoResponseAccount_warning
    UsersInfoResponseActive_standalone_fundraisers
    UsersInfoResponseAvatar_status
    UsersInfoResponseBiography_with_entities
    UsersInfoResponseCharity_profile_fundraiser_info
    UsersInfoResponseConsumption_sheet_config
    UsersInfoResponseCreator_shopping_info
    UsersInfoResponseDonation_amount_config
    UsersInfoResponseFan_club_info
    UsersInfoResponseHd_profile_pic_url_info
    UsersInfoResponseHdProfilePicVersionsItem
    UsersInfoResponsePinned_channels_info
    UsersInfoResponseRecs_from_friends
    UsersInfoResponseUser
    UsersInfoStreamInput
    UsersInfoStreamResponse
    UsersInfoStreamResponseActive_standalone_fundraisers
    UsersInfoStreamResponseAvailableThemeColorsItem
    UsersInfoStreamResponseAvatar_status
    UsersInfoStreamResponseBiography_with_entities
    UsersInfoStreamResponseCreator_shopping_info
    UsersInfoStreamResponseFan_club_info
    UsersInfoStreamResponseHd_profile_pic_url_info
    UsersInfoStreamResponseHdProfilePicVersionsItem
    UsersInfoStreamResponseMeta_verified_benefits_info
    UsersInfoStreamResponseNametag
    UsersInfoStreamResponseNot_meta_verified_friction_info
    UsersInfoStreamResponsePinned_channels_info
    UsersInfoStreamResponseProfile_overlay_info
    UsersInfoStreamResponseRecon_features
    UsersInfoStreamResponseRecs_from_friends
    UsersInfoStreamResponseRing_creator_metadata
    UsersInfoStreamResponseSelected_theme_color
    UsersInfoStreamResponseTheme_color
    UsersInfoStreamResponseUser
    UsersLookupInput
    UsersSearchResponse
    UsersSearchResponseFriendship_status
    UsersSearchResponseUsersItem
    UsersStoryInput
    UsersStoryResponse
    UsersStoryResponseCandidatesItem
    UsersStoryResponseFriendship_status
    UsersStoryResponseImage_versions2
    UsersStoryResponseItemsItem
    UsersStoryResponseLinksItem
    UsersStoryResponseLocation
    UsersStoryResponseReel
    UsersStoryResponseReelMentionsItem
    UsersStoryResponseSharing_friction_info
    UsersStoryResponseStoryCtaItem
    UsersStoryResponseStoryFeedMediaItem
    UsersStoryResponseStoryLocationsItem
    UsersStoryResponseUser
    UsersStoryResponseVideoVersionsItem
    UserStoryFeedInput
    UserStoryFeedResponse
    UserStoryFeedResponseCandidatesItem
    UserStoryFeedResponseFriendship_status
    UserStoryFeedResponseImage_versions2
    UserStoryFeedResponseItemsItem
    UserStoryFeedResponseLinksItem
    UserStoryFeedResponseLocation
    UserStoryFeedResponseReel
    UserStoryFeedResponseReelMentionsItem
    UserStoryFeedResponseSharing_friction_info
    UserStoryFeedResponseStoryCtaItem
    UserStoryFeedResponseStoryFeedMediaItem
    UserStoryFeedResponseStoryLocationsItem
    UserStoryFeedResponseUser
    UserStoryFeedResponseVideoVersionsItem
    UsersUsernameInfoStreamInput
    UsertagsFeedInput
    UsertagsFeedResponse
    UsertagsFeedResponseCandidatesItem
    UsertagsFeedResponseCaption
    UsertagsFeedResponseFriendship_status
    UsertagsFeedResponseImage_versions2
    UsertagsFeedResponseInItem
    UsertagsFeedResponseItemsItem
    UsertagsFeedResponseLocation
    UsertagsFeedResponsePreviewCommentsItem
    UsertagsFeedResponseUser
    UsertagsFeedResponseUsertags
    UsertagsRemoveResponse
    UsertagsReviewResponse
    VerifyCodeStepData
    VerifyEmailCodeStepData
    VerifyEmailStepData
    VerifySmsCodeStepData
    WebProfileInfoInput
    WebProfileInfoResponse
    WebProfileInfoResponseBiographyWithEntities
    WebProfileInfoResponseClipsMusicAttributionInfo
    WebProfileInfoResponseCoauthorProducer
    WebProfileInfoResponseDashInfo
    WebProfileInfoResponseData
    WebProfileInfoResponseDataUser
    WebProfileInfoResponseDimensions
    WebProfileInfoResponseEdgeCount
    WebProfileInfoResponseEdgeMedia
    WebProfileInfoResponseEdgeMediaEdge
    WebProfileInfoResponseEdgeMediaToCaption
    WebProfileInfoResponseEdgeMediaToCaptionEdge
    WebProfileInfoResponseEdgeMediaToTaggedUser
    WebProfileInfoResponseEdgeMediaToTaggedUserEdge
    WebProfileInfoResponseEdgeMutualFollowedBy
    WebProfileInfoResponseEdgeSidecarToChildren
    WebProfileInfoResponseEdgeSidecarToChildrenEdge
    WebProfileInfoResponseFelixProfileGridCrop
    WebProfileInfoResponseLocation
    WebProfileInfoResponseMediaNode
    WebProfileInfoResponseNodeUser
    WebProfileInfoResponseOwner
    WebProfileInfoResponsePageInfo
    WebProfileInfoResponseSharingFrictionInfo
    WebProfileInfoResponseSidecarNode
    WebProfileInfoResponseTaggedUserNode
    WebProfileInfoResponseTextNode
    WebProfileInfoResponseThumbnailResource
    WriteSupportedCapabilitiesInput
    WriteSupportedCapabilitiesResponse

    Type Aliases

    AlbumUploadEntity
    AllowTagsFromInput
    AllowTagsFromOptions
    AndroidIgpapiOptions
    ChangeMutedStatusInput
    ChangeNotificationSettingsResponse
    EnableTotpTwoFactorResponse
    EnableTwoFactorInput
    InsightsFriendlyName
    InsightsSurface
    ManuallyApproveTagsInput
    MediaImpressionModuleInfoOption
    MediaInfoResponse
    NotificationSettingsContentType
    NotificationSettingsEveryone
    NotificationSettingsFollowingOnly
    NotificationSettingsMuteAllPeriod
    NotificationSettingsOff
    NotificationSettingsOnOff
    NotificationSettingsOptions
    PostingLiveConfigureResponse
    ProfileVisitFlowInput
    SegmentDivider
    SettingsPrivacyMessagesDeliverRequestsTo
    SettingsPrivacyMessagesDeliverRequestsToGeneralFolder
    SettingsPrivacyMessagesDeliverRequestsToMessageRequests
    SettingsPrivacyMessagesDeliverRequestsToPrimaryFolder
    SettingsPrivacyMessagesDoNotReceiveRequests
    SettingsPrivacyMessagesGroup
    SettingsPrivacyMessagesRequestsOrDoNotReceive
    StoriesSeenInput
    StoryMediaUploader
    TwoFactorBloksMethod
    TwoFactorBloksPollTrustedNotificationOutput
    TwoFactorMethod
    UfacServerParams
    UserFeedResponseItem
    UsertagsRemoveInput
    UsertagsReviewApproveAction
    UsertagsReviewInput
    UsertagsReviewRemoveAction

    Namespaces

    GetNotificationSettingsResponse
    LiveArchiveResponse
    ManuallyApproveTagsResponse
    MediaEditResponse
    MediaStoryQuestionResponseOption
    PendingTagsFeedResponse
    PostingLiveConfigureSuccessResponse
    SettingsPrivacyMessagesSetWarningAlertResponse
    StoryResponseOption
    UserFeedAlbumPhotosResponse
    UserFeedPhotoResponse
    UserFeedReelsResponse
    UserFeedShopPhotoResponse
    UserFeedShopPhotosAlbumResponse
    UserFeedVideoResponse