com.vk.api.sdk.queries.groups.GroupsAddLinkQuery 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.groups;
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.groups.responses.AddLinkResponse;
import java.util.Arrays;
import java.util.List;
/**
* Query for Groups.addLink method
*/
public class GroupsAddLinkQuery 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 groupId value of "group id" parameter. Minimum is 1.
* @param link value of "link" parameter.
*/
public GroupsAddLinkQuery(VkApiClient client, UserActor actor, int groupId, String link) {
super(client, "groups.addLink", AddLinkResponse.class);
accessToken(actor.getAccessToken());
groupId(groupId);
link(link);
}
/**
* Community ID.
*
* @param value value of "group id" parameter. Minimum is 1.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
protected GroupsAddLinkQuery groupId(int value) {
return unsafeParam("group_id", value);
}
/**
* Link URL.
*
* @param value value of "link" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
protected GroupsAddLinkQuery link(String value) {
return unsafeParam("link", value);
}
/**
* Description text for the link.
*
* @param value value of "text" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
public GroupsAddLinkQuery text(String value) {
return unsafeParam("text", value);
}
@Override
protected GroupsAddLinkQuery getThis() {
return this;
}
@Override
protected List essentialKeys() {
return Arrays.asList("group_id", "link", "access_token");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy