com.vk.api.sdk.actions.Podcasts 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.actions;
import com.vk.api.sdk.client.AbstractAction;
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.queries.podcasts.PodcastsSearchPodcastQuery;
/**
* List of Podcasts methods
*/
public class Podcasts extends AbstractAction {
/**
* Constructor
*
* @param client vk api client
*/
public Podcasts(VkApiClient client) {
super(client);
}
/**
* @param actor vk actor
* @param searchString
* @return query
*/
public PodcastsSearchPodcastQuery searchPodcast(UserActor actor, String searchString) {
return new PodcastsSearchPodcastQuery(getClient(), actor, searchString);
}
/**
* @param actor vk actor
* @param searchString
* @return query
*/
public PodcastsSearchPodcastQuery searchPodcast(GroupActor actor, String searchString) {
return new PodcastsSearchPodcastQuery(getClient(), actor, searchString);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy