All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vk.api.sdk.actions.Podcasts Maven / Gradle / Ivy

Go to download

Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.

There is a newer version: 1.0.16
Show newest version
// 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