-
- All Implemented Interfaces:
public interface VerizonMediaPreplayBaseResponse
The Verizon Media Preplay Base Response API.
-
-
Method Summary
Modifier and Type Method Description abstract VerizonMediaPreplayResponseType
getVerizonMediaPreplayResponseType()
The response type of the request. abstract String
getPlayURL()
The manifest's URL. abstract String
getPrefix()
The zone prefix for the viewer's session. abstract String
getSid()
The identifier of the viewer's session. abstract VerizonMediaResponseDrm
getVerizonMediaResponseDrm()
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.
-
-
-
-