Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 741 Bytes

File metadata and controls

26 lines (20 loc) · 741 Bytes

OpenapiClient::StreamingOptionTypes

Properties

Name Type Description Notes
addon Boolean Whether there are shows available via an addon/channel subscription.
buy Boolean Whether there are shows available to buy.
rent Boolean Whether there are shows available for rental.
free Boolean Whether there are free shows to watch.
subscription Boolean Whether there are shows available via a paid subscription plan.

Example

require 'openapi_client'

instance = OpenapiClient::StreamingOptionTypes.new(
  addon: null,
  buy: null,
  rent: null,
  free: null,
  subscription: null
)