-
- All Implemented Interfaces:
public interface VerizonMediaPreplayBaseResponseThe Verizon Media Preplay Base Response API.
-
-
Method Summary
Modifier and Type Method Description abstract VerizonMediaPreplayResponseTypegetVerizonMediaPreplayResponseType()The response type of the request. abstract StringgetPlayURL()The manifest's URL. abstract StringgetPrefix()The zone prefix for the viewer's session. abstract StringgetSid()The identifier of the viewer's session. abstract VerizonMediaResponseDrmgetVerizonMediaResponseDrm()The content protection information. -
-
Method Detail
-
getVerizonMediaPreplayResponseType
@NonNull() abstract VerizonMediaPreplayResponseType getVerizonMediaPreplayResponseType()
The response type of the request.
- For all possibilities, see VerizonMediaPreplayResponseType.
-
getPlayURL
@NonNull() abstract String getPlayURL()
The manifest's URL. (NonNull)
-
getPrefix
@NonNull() abstract String getPrefix()
The zone prefix for the viewer's session. (NonNull)
- Use this prefix when submitting playback or API requests for this session.
Example:
- Possible return value: 'https://content-ause2.uplynk.com/'
-
getVerizonMediaResponseDrm
@Nullable() abstract VerizonMediaResponseDrm getVerizonMediaResponseDrm()
The content protection information. (Nullable)
- Currently, this only contains the Fairplay certificate URL.
- For all possibilities, see VerizonMediaResponseDrm.
-
-
-
-