Class PublishedTrackFetcher
- java.lang.Object
-
- com.twilio.base.Fetcher<PublishedTrack>
-
- com.twilio.rest.video.v1.room.participant.PublishedTrackFetcher
-
public class PublishedTrackFetcher extends Fetcher<PublishedTrack>
-
-
Constructor Summary
Constructors Constructor Description PublishedTrackFetcher(String pathRoomSid, String pathParticipantSid, String pathSid)
Construct a new PublishedTrackFetcher.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PublishedTrack
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
-
PublishedTrackFetcher
public PublishedTrackFetcher(String pathRoomSid, String pathParticipantSid, String pathSid)
Construct a new PublishedTrackFetcher.- Parameters:
pathRoomSid
- Unique Room identifier where this Track is published.pathParticipantSid
- Unique Participant identifier that publishes this Track.pathSid
- A 34 character string that uniquely identifies this resource.
-
-
Method Detail
-
fetch
public PublishedTrack fetch(TwilioRestClient client)
Make the request to the Twilio API to perform the fetch.- Specified by:
fetch
in classFetcher<PublishedTrack>
- Parameters:
client
- TwilioRestClient with which to make the request- Returns:
- Fetched PublishedTrack
-
-