
com.vk.api.sdk.queries.messages.MessagesDeleteConversationQuery 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.
The newest version!
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.queries.messages;
import com.vk.api.sdk.client.AbstractQueryBuilder;
import com.vk.api.sdk.client.VkApiClient;
import com.vk.api.sdk.client.actors.GroupActor;
import com.vk.api.sdk.client.actors.UserActor;
import com.vk.api.sdk.objects.annotations.ApiParam;
import com.vk.api.sdk.objects.messages.responses.DeleteConversationResponse;
import java.util.Arrays;
import java.util.List;
/**
* Query for Messages.deleteConversation method
*/
public class MessagesDeleteConversationQuery extends AbstractQueryBuilder {
/**
* Creates a AbstractQueryBuilder instance that can be used to build group api request with various parameters
*
* @param client VK API client
* @param actor actor with access token
*/
public MessagesDeleteConversationQuery(VkApiClient client, GroupActor actor) {
super(client, "messages.deleteConversation", DeleteConversationResponse.class);
accessToken(actor.getAccessToken());
groupId(actor.getGroupId());
}
/**
* Creates a AbstractQueryBuilder instance that can be used to build user api request with various parameters
*
* @param client VK API client
* @param actor actor with access token
*/
public MessagesDeleteConversationQuery(VkApiClient client, UserActor actor) {
super(client, "messages.deleteConversation", DeleteConversationResponse.class);
accessToken(actor.getAccessToken());
}
/**
* User ID. To clear a chat history use 'chat_id'
*
* @param value value of "user id" parameter. Entity - owner
*
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
@ApiParam("user_id")
public MessagesDeleteConversationQuery userId(Long value) {
return unsafeParam("user_id", value);
}
/**
* Destination ID. "For user: 'User ID', e.g. '12345'. For chat: '2000000000' + 'chat_id', e.g. '2000000001'. For community: '- community ID', e.g. '-12345'. "
*
* @param value value of "peer id" parameter. Entity - peer
*
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
@ApiParam("peer_id")
public MessagesDeleteConversationQuery peerId(Long value) {
return unsafeParam("peer_id", value);
}
/**
* Group ID (for group messages with user access token)
*
* @param value value of "group id" parameter. Minimum is 0. Entity - owner
*
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
@ApiParam("group_id")
public MessagesDeleteConversationQuery groupId(Long value) {
return unsafeParam("group_id", value);
}
@Override
protected MessagesDeleteConversationQuery getThis() {
return this;
}
@Override
protected List essentialKeys() {
return Arrays.asList("access_token");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy