Class ConferenceReader
- java.lang.Object
-
- com.twilio.base.Reader<Conference>
-
- com.twilio.rest.api.v2010.account.ConferenceReader
-
public class ConferenceReader extends Reader<Conference>
-
-
Constructor Summary
Constructors Constructor Description ConferenceReader()ConferenceReader(String pathAccountSid)
-
Method Summary
-
-
-
Constructor Detail
-
ConferenceReader
public ConferenceReader()
-
ConferenceReader
public ConferenceReader(String pathAccountSid)
-
-
Method Detail
-
setDateCreated
public ConferenceReader setDateCreated(LocalDate dateCreated)
-
setDateCreatedBefore
public ConferenceReader setDateCreatedBefore(LocalDate dateCreatedBefore)
-
setDateCreatedAfter
public ConferenceReader setDateCreatedAfter(LocalDate dateCreatedAfter)
-
setDateUpdated
public ConferenceReader setDateUpdated(LocalDate dateUpdated)
-
setDateUpdatedBefore
public ConferenceReader setDateUpdatedBefore(LocalDate dateUpdatedBefore)
-
setDateUpdatedAfter
public ConferenceReader setDateUpdatedAfter(LocalDate dateUpdatedAfter)
-
setFriendlyName
public ConferenceReader setFriendlyName(String friendlyName)
-
setStatus
public ConferenceReader setStatus(Conference.Status status)
-
setPageSize
public ConferenceReader setPageSize(Integer pageSize)
-
read
public ResourceSet<Conference> read(TwilioRestClient client)
Description copied from class:ReaderExecute a request using specified client.- Specified by:
readin classReader<Conference>- Parameters:
client- client used to make request- Returns:
- ResourceSet of objects
-
firstPage
public Page<Conference> firstPage(TwilioRestClient client)
Description copied from class:ReaderFetch the first page of resources using specified client.- Specified by:
firstPagein classReader<Conference>- Parameters:
client- client used to fetch- Returns:
- Page containing the first pageSize of resources
-
previousPage
public Page<Conference> previousPage(Page<Conference> page, TwilioRestClient client)
Description copied from class:ReaderFetch the prior page of resources using specified client.- Specified by:
previousPagein classReader<Conference>- Parameters:
page- current page of resourcesclient- client used to fetch- Returns:
- Page containing the previous pageSize of resources
-
nextPage
public Page<Conference> nextPage(Page<Conference> page, TwilioRestClient client)
Description copied from class:ReaderFetch the following page of resources using specified client.- Specified by:
nextPagein classReader<Conference>- Parameters:
page- current page of resourcesclient- client used to fetch- Returns:
- Page containing the next pageSize of resources
-
getPage
public Page<Conference> getPage(String targetUrl, TwilioRestClient client)
Description copied from class:ReaderRetrieve the target page of resources.- Specified by:
getPagein classReader<Conference>- Parameters:
targetUrl- API-generated URL for the requested results pageclient- client used to fetch- Returns:
- Page containing the target pageSize of resources
-
-