rozod
    Preparing search index...

    Variable getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPostsConst Param

    getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPosts: EndpointGeneric<
        {
            filter?: string;
            forum_category_id: string;
            group_id: string;
            maxPageSize?: number;
            pageToken?: string;
            view?: "VIEW_UNSPECIFIED"
            | "FULL"
            | "FULL_WITH_FIRST_COMMENT";
        },
        {
            groupForumPosts: {
                archiver: string;
                archiveTime: string;
                author: string;
                commentCount: number;
                createTime: string;
                firstComment: {
                    groupForumCommentId: string;
                    message: {
                        author: string;
                        createTime: string;
                        messageReaction: { count: number; emoteId: string }[];
                        plainText: string;
                        updateTime: string;
                    };
                    path: string;
                };
                groupForumPostId: string;
                locked: boolean;
                path: string;
                pinned: boolean;
                title: string;
                updateTime: string;
            }[];
            nextPageToken: string;
        },
        undefined,
    > = ...

    BETA

    Lists forum posts in the group's forum category.

    Scopes: group-forum:read Engine: Usable with HttpService

    group_id The group ID. forum_category_id The forum-category ID. maxPageSize The maximum number of group forum posts to return. The service might return fewer than this value. If unspecified, at most 10 group forum posts are returned. The maximum value is 100 and higher values are set to 100. pageToken A page token, received from a previous call, to retrieve a subsequent page.

    When paginating, all other parameters provided to the subsequent call must match the call that provided the page token. filter This field may be set in order to filter the resources returned.

    Filtering conforms to Common Expression Language (CEL). Only the query filter=pinned==true is supported, where only pinned posts are returned. filter=pinned==falseis not supported. view The view in which to retrieve the group forum post.

    Supports FULL and FULL_WITH_FIRST_COMMENT.

    Defaults to FULL.

    Possible values:

    Value Description
    VIEW_UNSPECIFIED The group forum post view is not specified; the default will be used.
    FULL Includes all fields but does not dereference first_comment. Only the path field is populated.
    FULL_WITH_FIRST_COMMENT Includes all fields and also fully populates first_comment. The default view.