com.vk.api.sdk.queries.upload.UploadPhotoOwnerQuery 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.
package com.vk.api.sdk.queries.upload;
import com.vk.api.sdk.client.VkApiClient;
import com.vk.api.sdk.objects.photos.responses.OwnerUploadResponse;
import java.io.File;
import java.util.Map;
public class UploadPhotoOwnerQuery extends UploadQueryBuilder {
public UploadPhotoOwnerQuery(VkApiClient client, String uploadUrl, Map files) {
super(client, uploadUrl, files, OwnerUploadResponse.class);
}
@Override
protected UploadPhotoOwnerQuery getThis() {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy