com.vk.api.sdk.queries.photos.PhotosEditCommentQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.queries.photos;
import com.vk.api.sdk.client.AbstractQueryBuilder;
import com.vk.api.sdk.client.VkApiClient;
import com.vk.api.sdk.client.actors.UserActor;
import com.vk.api.sdk.objects.base.responses.OkResponse;
import java.util.Arrays;
import java.util.List;
/**
* Query for Photos.editComment method
*/
public class PhotosEditCommentQuery extends AbstractQueryBuilder {
/**
* Creates a AbstractQueryBuilder instance that can be used to build api request with various parameters
*
* @param client VK API client
* @param actor actor with access token
* @param commentId value of "comment id" parameter.
*/
public PhotosEditCommentQuery(VkApiClient client, UserActor actor, int commentId) {
super(client, "photos.editComment", OkResponse.class);
accessToken(actor.getAccessToken());
commentId(commentId);
}
/**
* ID of the user or community that owns the photo.
*
* @param value value of "owner id" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
public PhotosEditCommentQuery ownerId(Integer value) {
return unsafeParam("owner_id", value);
}
/**
* Comment ID.
*
* @param value value of "comment id" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
protected PhotosEditCommentQuery commentId(int value) {
return unsafeParam("comment_id", value);
}
/**
* New text of the comment.
*
* @param value value of "message" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
public PhotosEditCommentQuery message(String value) {
return unsafeParam("message", value);
}
/**
* attachments
* (Required if 'message' is not set.) List of objects attached to the post, in the following format: "_,_", ' — Type of media attachment: 'photo' — photo, 'video' — video, 'audio' — audio, 'doc' — document, '' — Media attachment owner ID. '' — Media attachment ID. Example: "photo100172_166443618,photo66748_265827614"
*
* @param value value of "attachments" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
public PhotosEditCommentQuery attachments(String... value) {
return unsafeParam("attachments", value);
}
/**
* (Required if 'message' is not set.) List of objects attached to the post, in the following format: "_,_", ' — Type of media attachment: 'photo' — photo, 'video' — video, 'audio' — audio, 'doc' — document, '' — Media attachment owner ID. '' — Media attachment ID. Example: "photo100172_166443618,photo66748_265827614"
*
* @param value value of "attachments" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
public PhotosEditCommentQuery attachments(List value) {
return unsafeParam("attachments", value);
}
@Override
protected PhotosEditCommentQuery getThis() {
return this;
}
@Override
protected List essentialKeys() {
return Arrays.asList("comment_id", "access_token");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy