
com.vk.api.sdk.queries.photos.PhotosGetUploadServerQuery 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.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.annotations.ApiParam;
import com.vk.api.sdk.objects.photos.responses.GetUploadServerResponse;
import java.util.Arrays;
import java.util.List;
/**
* Query for Photos.getUploadServer method
*/
public class PhotosGetUploadServerQuery extends AbstractQueryBuilder {
/**
* 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 PhotosGetUploadServerQuery(VkApiClient client, UserActor actor) {
super(client, "photos.getUploadServer", GetUploadServerResponse.class);
accessToken(actor.getAccessToken());
}
/**
* Set album id
*
* @param value value of "album id" parameter.
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
@ApiParam("album_id")
public PhotosGetUploadServerQuery albumId(Integer value) {
return unsafeParam("album_id", value);
}
/**
* ID of community that owns the album (if the photo will be uploaded to a community album).
*
* @param value value of "group id" parameter. Entity - owner
*
* @return a reference to this {@code AbstractQueryBuilder} object to fulfill the "Builder" pattern.
*/
@ApiParam("group_id")
public PhotosGetUploadServerQuery groupId(Long value) {
return unsafeParam("group_id", value);
}
@Override
protected PhotosGetUploadServerQuery getThis() {
return this;
}
@Override
protected List essentialKeys() {
return Arrays.asList("access_token");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy