rozod
    Preparing search index...

    Variable getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPostsPostIdCommentsConst Param

    getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPostsPostIdComments: EndpointGeneric<
        {
            filter?: string;
            forum_category_id: string;
            group_id: string;
            maxPageSize?: number;
            pageToken?: string;
            post_id: string;
        },
        {
            groupForumComments: {
                groupForumCommentId: string;
                message: {
                    author: string;
                    createTime: string;
                    messageReaction: { count: number; emoteId: string }[];
                    plainText: string;
                    updateTime: string;
                };
                path: string;
            }[];
            nextPageToken: string;
        },
        undefined,
    > = ...

    BETA

    Lists forum comments on a group's forum post.

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

    group_id The group ID. forum_category_id The forum-category ID. post_id The post ID. maxPageSize The maximum number of group forum comments to return. The service might return fewer than this value. If unspecified, at most 10 group forum comments 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 string field repliesToCommentId and the == operator are supported. If repliesToCommentId is specified, only comments that respond to the comment are returned. The default value is ''. If repliesToCommentId='', only comments responding directly to the post are returned. Example: "filter=repliesToCommentId==01234567-89ab-cdef-0123-456789abcdef"