Class RawFeedsClient
- java.lang.Object
-
- com.intercom.api.resources.news.feeds.RawFeedsClient
-
public class RawFeedsClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description RawFeedsClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntercomHttpResponse<Newsfeed>find(FindNewsFeedRequest request)You can fetch the details of a single newsfeedIntercomHttpResponse<Newsfeed>find(FindNewsFeedRequest request, RequestOptions requestOptions)You can fetch the details of a single newsfeedIntercomHttpResponse<PaginatedResponse>list()You can fetch a list of all newsfeedsIntercomHttpResponse<PaginatedResponse>list(RequestOptions requestOptions)You can fetch a list of all newsfeedsIntercomHttpResponse<PaginatedResponse>listItems(ListNewsFeedItemsRequest request)You can fetch a list of all news items that are live on a given newsfeedIntercomHttpResponse<PaginatedResponse>listItems(ListNewsFeedItemsRequest request, RequestOptions requestOptions)You can fetch a list of all news items that are live on a given newsfeed
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
RawFeedsClient
public RawFeedsClient(ClientOptions clientOptions)
-
-
Method Detail
-
listItems
public IntercomHttpResponse<PaginatedResponse> listItems(ListNewsFeedItemsRequest request)
You can fetch a list of all news items that are live on a given newsfeed
-
listItems
public IntercomHttpResponse<PaginatedResponse> listItems(ListNewsFeedItemsRequest request, RequestOptions requestOptions)
You can fetch a list of all news items that are live on a given newsfeed
-
list
public IntercomHttpResponse<PaginatedResponse> list()
You can fetch a list of all newsfeeds
-
list
public IntercomHttpResponse<PaginatedResponse> list(RequestOptions requestOptions)
You can fetch a list of all newsfeeds
-
find
public IntercomHttpResponse<Newsfeed> find(FindNewsFeedRequest request)
You can fetch the details of a single newsfeed
-
find
public IntercomHttpResponse<Newsfeed> find(FindNewsFeedRequest request, RequestOptions requestOptions)
You can fetch the details of a single newsfeed
-
-