This commit is contained in:
unknown 2020-11-18 15:51:15 +02:00
Родитель c96cbc4ca0
Коммит b0ac45e765
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -33,7 +33,7 @@ import rx.Observable;
* An instance of this class provides access to all the operations defined
* in Images.
*/
public interface Images {
public interface ImagesInterface {
/**
* The Image Search API lets you send a search query to Bing and get back a list of relevant images. This section provides technical details about the query parameters and headers that you use to request images and the JSON response objects that contain them. For examples that show how to make requests, see [Searching the Web for Images](https://docs.microsoft.com/en-us/bing/bing-image-search/overview).
*

Просмотреть файл

@ -24,7 +24,7 @@ import rx.Observable;
* An instance of this class provides access to all the operations defined
* in News.
*/
public interface News {
public interface NewsInterface {
/**
* The News Search API lets you send a search query to Bing and get back a list of news that are relevant to the search query. This section provides technical details about the query parameters and headers that you use to request news and the JSON response objects that contain them. For examples that show how to make requests, see [Searching the web for news](https://docs.microsoft.com/en-us/bing/bing-news-search/overview).
*

Просмотреть файл

@ -84,6 +84,6 @@ public interface VideoSearchClient {
* Gets the Videos object to access its operations.
* @return the Videos object.
*/
Videos videos();
Videosinterface videos();
}