Package com.twilio.rest.video.v1.room
Class ParticipantReader
- java.lang.Object
-
- com.twilio.base.Reader<Participant>
-
- com.twilio.rest.video.v1.room.ParticipantReader
-
public class ParticipantReader extends Reader<Participant>
-
-
Constructor Summary
Constructors Constructor Description ParticipantReader(String pathRoomSid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Page<Participant>
firstPage(TwilioRestClient client)
Fetch the first page of resources using specified client.Page<Participant>
getPage(String targetUrl, TwilioRestClient client)
Retrieve the target page of resources.Page<Participant>
nextPage(Page<Participant> page, TwilioRestClient client)
Fetch the following page of resources using specified client.Page<Participant>
previousPage(Page<Participant> page, TwilioRestClient client)
Fetch the prior page of resources using specified client.ResourceSet<Participant>
read(TwilioRestClient client)
Execute a request using specified client.ParticipantReader
setDateCreatedAfter(ZonedDateTime dateCreatedAfter)
ParticipantReader
setDateCreatedBefore(ZonedDateTime dateCreatedBefore)
ParticipantReader
setIdentity(String identity)
ParticipantReader
setPageSize(Integer pageSize)
ParticipantReader
setStatus(Participant.Status status)
-
-
-
Constructor Detail
-
ParticipantReader
public ParticipantReader(String pathRoomSid)
-
-
Method Detail
-
setStatus
public ParticipantReader setStatus(Participant.Status status)
-
setIdentity
public ParticipantReader setIdentity(String identity)
-
setDateCreatedAfter
public ParticipantReader setDateCreatedAfter(ZonedDateTime dateCreatedAfter)
-
setDateCreatedBefore
public ParticipantReader setDateCreatedBefore(ZonedDateTime dateCreatedBefore)
-
setPageSize
public ParticipantReader setPageSize(Integer pageSize)
-
read
public ResourceSet<Participant> read(TwilioRestClient client)
Description copied from class:Reader
Execute a request using specified client.- Specified by:
read
in classReader<Participant>
- Parameters:
client
- client used to make request- Returns:
- ResourceSet of objects
-
firstPage
public Page<Participant> firstPage(TwilioRestClient client)
Description copied from class:Reader
Fetch the first page of resources using specified client.- Specified by:
firstPage
in classReader<Participant>
- Parameters:
client
- client used to fetch- Returns:
- Page containing the first pageSize of resources
-
previousPage
public Page<Participant> previousPage(Page<Participant> page, TwilioRestClient client)
Description copied from class:Reader
Fetch the prior page of resources using specified client.- Specified by:
previousPage
in classReader<Participant>
- Parameters:
page
- current page of resourcesclient
- client used to fetch- Returns:
- Page containing the previous pageSize of resources
-
nextPage
public Page<Participant> nextPage(Page<Participant> page, TwilioRestClient client)
Description copied from class:Reader
Fetch the following page of resources using specified client.- Specified by:
nextPage
in classReader<Participant>
- Parameters:
page
- current page of resourcesclient
- client used to fetch- Returns:
- Page containing the next pageSize of resources
-
getPage
public Page<Participant> getPage(String targetUrl, TwilioRestClient client)
Description copied from class:Reader
Retrieve the target page of resources.- Specified by:
getPage
in classReader<Participant>
- Parameters:
targetUrl
- API-generated URL for the requested results pageclient
- client used to fetch- Returns:
- Page containing the target pageSize of resources
-
-