Class InviteReader
- java.lang.Object
-
- com.twilio.base.Reader<Invite>
-
- com.twilio.rest.chat.v1.service.channel.InviteReader
-
-
Constructor Summary
Constructors Constructor Description InviteReader(String pathServiceSid, String pathChannelSid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Page<Invite>
firstPage(TwilioRestClient client)
Fetch the first page of resources using specified client.Page<Invite>
getPage(String targetUrl, TwilioRestClient client)
Retrieve the target page of resources.Page<Invite>
nextPage(Page<Invite> page, TwilioRestClient client)
Fetch the following page of resources using specified client.Page<Invite>
previousPage(Page<Invite> page, TwilioRestClient client)
Fetch the prior page of resources using specified client.ResourceSet<Invite>
read(TwilioRestClient client)
Execute a request using specified client.InviteReader
setIdentity(String identity)
InviteReader
setIdentity(List<String> identity)
InviteReader
setPageSize(Integer pageSize)
-
-
-
Method Detail
-
setIdentity
public InviteReader setIdentity(List<String> identity)
-
setIdentity
public InviteReader setIdentity(String identity)
-
setPageSize
public InviteReader setPageSize(Integer pageSize)
-
read
public ResourceSet<Invite> read(TwilioRestClient client)
Description copied from class:Reader
Execute a request using specified client.
-
firstPage
public Page<Invite> firstPage(TwilioRestClient client)
Description copied from class:Reader
Fetch the first page of resources using specified client.
-
previousPage
public Page<Invite> previousPage(Page<Invite> page, TwilioRestClient client)
Description copied from class:Reader
Fetch the prior page of resources using specified client.- Specified by:
previousPage
in classReader<Invite>
- Parameters:
page
- current page of resourcesclient
- client used to fetch- Returns:
- Page containing the previous pageSize of resources
-
nextPage
public Page<Invite> nextPage(Page<Invite> page, TwilioRestClient client)
Description copied from class:Reader
Fetch the following page of resources using specified client.
-
getPage
public Page<Invite> getPage(String targetUrl, TwilioRestClient client)
Description copied from class:Reader
Retrieve the target page of resources.
-
-