@@ -145,6 +145,8 @@ type LiveInput struct {
145145 // indicate no change, or include with a `null` value to remove an existing
146146 // scheduled deletion.
147147 DeleteRecordingAfterDays float64 `json:"deleteRecordingAfterDays"`
148+ // Indicates whether the live input is enabled and can accept streams.
149+ Enabled bool `json:"enabled"`
148150 // A user modifiable key-value store used to reference other systems of record for
149151 // managing live inputs.
150152 Meta interface {} `json:"meta"`
@@ -177,6 +179,7 @@ type LiveInput struct {
177179type liveInputJSON struct {
178180 Created apijson.Field
179181 DeleteRecordingAfterDays apijson.Field
182+ Enabled apijson.Field
180183 Meta apijson.Field
181184 Modified apijson.Field
182185 Recording apijson.Field
@@ -475,6 +478,8 @@ type LiveInputListResponseLiveInput struct {
475478 // indicate no change, or include with a `null` value to remove an existing
476479 // scheduled deletion.
477480 DeleteRecordingAfterDays float64 `json:"deleteRecordingAfterDays"`
481+ // Indicates whether the live input is enabled and can accept streams.
482+ Enabled bool `json:"enabled"`
478483 // A user modifiable key-value store used to reference other systems of record for
479484 // managing live inputs.
480485 Meta interface {} `json:"meta"`
@@ -490,6 +495,7 @@ type LiveInputListResponseLiveInput struct {
490495type liveInputListResponseLiveInputJSON struct {
491496 Created apijson.Field
492497 DeleteRecordingAfterDays apijson.Field
498+ Enabled apijson.Field
493499 Meta apijson.Field
494500 Modified apijson.Field
495501 UID apijson.Field
@@ -516,6 +522,8 @@ type LiveInputNewParams struct {
516522 // indicate no change, or include with a `null` value to remove an existing
517523 // scheduled deletion.
518524 DeleteRecordingAfterDays param.Field [float64 ] `json:"deleteRecordingAfterDays"`
525+ // Indicates whether the live input is enabled and can accept streams.
526+ Enabled param.Field [bool ] `json:"enabled"`
519527 // A user modifiable key-value store used to reference other systems of record for
520528 // managing live inputs.
521529 Meta param.Field [interface {}] `json:"meta"`
@@ -727,6 +735,8 @@ type LiveInputUpdateParams struct {
727735 // indicate no change, or include with a `null` value to remove an existing
728736 // scheduled deletion.
729737 DeleteRecordingAfterDays param.Field [float64 ] `json:"deleteRecordingAfterDays"`
738+ // Indicates whether the live input is enabled and can accept streams.
739+ Enabled param.Field [bool ] `json:"enabled"`
730740 // A user modifiable key-value store used to reference other systems of record for
731741 // managing live inputs.
732742 Meta param.Field [interface {}] `json:"meta"`
0 commit comments