OBJECT

RecordingAsset

A recording asset of a broadcast.

link GraphQL Schema definition

  • type RecordingAsset {
  • # The recoding asset ID.
  • id: ID!
  • # A collection of URLs for the asset.
  • urls: [String]!
  • # A path for the asset.
  • path: String!
  • # The broadcast.
  • broadcast: Broadcast
  • # The broadcast unique ID.
  • broadcastUniqueId: String
  • # The broadcast go live event.
  • broadcastGoLiveEvent: BroadcastGoLiveEvent
  • # The broadcast recording configuration.
  • broadcastRecording: BroadcastRecording
  • # The broadcast asset status.
  • status: ENUM_RECORDINGASSETSTATUS
  • # The date and time at which the provider key was created.
  • createdAt: DateTime
  • # The date and time at which the provider key was last updated.
  • updatedAt: DateTime
  • }