Class BoardEditCommentQuery

    • Constructor Detail

      • BoardEditCommentQuery

        public BoardEditCommentQuery​(VkApiClient client,
                                     UserActor actor,
                                     int groupId,
                                     int topicId,
                                     int commentId)
        Creates a AbstractQueryBuilder instance that can be used to build api request with various parameters
        Parameters:
        client - VK API client
        actor - actor with access token
        groupId - value of "group id" parameter. Minimum is 1.
        topicId - value of "topic id" parameter. Minimum is 0.
        commentId - value of "comment id" parameter. Minimum is 0.
    • Method Detail

      • groupId

        protected BoardEditCommentQuery groupId​(int value)
        ID of the community that owns the discussion board.
        Parameters:
        value - value of "group id" parameter. Minimum is 1.
        Returns:
        a reference to this AbstractQueryBuilder object to fulfill the "Builder" pattern.
      • topicId

        protected BoardEditCommentQuery topicId​(int value)
        Topic ID.
        Parameters:
        value - value of "topic id" parameter. Minimum is 0.
        Returns:
        a reference to this AbstractQueryBuilder object to fulfill the "Builder" pattern.
      • commentId

        protected BoardEditCommentQuery commentId​(int value)
        ID of the comment on the topic.
        Parameters:
        value - value of "comment id" parameter. Minimum is 0.
        Returns:
        a reference to this AbstractQueryBuilder object to fulfill the "Builder" pattern.
      • message

        public BoardEditCommentQuery message​(java.lang.String value)
        (Required if 'attachments' is not set). New comment text.
        Parameters:
        value - value of "message" parameter.
        Returns:
        a reference to this AbstractQueryBuilder object to fulfill the "Builder" pattern.
      • attachments

        public BoardEditCommentQuery attachments​(java.lang.String... value)
        attachments (Required if 'message' is not set.) List of media objects attached to the comment, in the following format: "_,_", ' — Type of media object: 'photo' — photo, 'video' — video, 'audio' — audio, 'doc' — document, '' — ID of the media owner. '' — Media ID. Example: "photo100172_166443618,photo66748_265827614"
        Parameters:
        value - value of "attachments" parameter.
        Returns:
        a reference to this AbstractQueryBuilder object to fulfill the "Builder" pattern.
      • attachments

        public BoardEditCommentQuery attachments​(java.util.List<java.lang.String> value)
        (Required if 'message' is not set.) List of media objects attached to the comment, in the following format: "_,_", ' — Type of media object: 'photo' — photo, 'video' — video, 'audio' — audio, 'doc' — document, '' — ID of the media owner. '' — Media ID. Example: "photo100172_166443618,photo66748_265827614"
        Parameters:
        value - value of "attachments" parameter.
        Returns:
        a reference to this AbstractQueryBuilder object to fulfill the "Builder" pattern.