Class ParticipantFetcher
- java.lang.Object
-
- com.twilio.base.Fetcher<Participant>
-
- com.twilio.rest.api.v2010.account.conference.ParticipantFetcher
-
public class ParticipantFetcher extends Fetcher<Participant>
-
-
Constructor Summary
Constructors Constructor Description ParticipantFetcher(String pathConferenceSid, String pathCallSid)
Construct a new ParticipantFetcher.ParticipantFetcher(String pathAccountSid, String pathConferenceSid, String pathCallSid)
Construct a new ParticipantFetcher.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Participant
fetch(TwilioRestClient client)
Make the request to the Twilio API to perform the fetch.-
Methods inherited from class com.twilio.base.Fetcher
fetch, fetchAsync, fetchAsync
-
-
-
-
Constructor Detail
-
ParticipantFetcher
public ParticipantFetcher(String pathConferenceSid, String pathCallSid)
Construct a new ParticipantFetcher.- Parameters:
pathConferenceSid
- The SID of the conference with the participant to fetchpathCallSid
- The Call SID of the resource to fetch
-
ParticipantFetcher
public ParticipantFetcher(String pathAccountSid, String pathConferenceSid, String pathCallSid)
Construct a new ParticipantFetcher.- Parameters:
pathAccountSid
- The SID of the Account that created the resource to fetchpathConferenceSid
- The SID of the conference with the participant to fetchpathCallSid
- The Call SID of the resource to fetch
-
-
Method Detail
-
fetch
public Participant fetch(TwilioRestClient client)
Make the request to the Twilio API to perform the fetch.- Specified by:
fetch
in classFetcher<Participant>
- Parameters:
client
- TwilioRestClient with which to make the request- Returns:
- Fetched Participant
-
-