Module Values.SdiSourceMappingUpdateRequestSource

Used in SdiSourceMappingsUpdateRequest. One SDI source mapping. It connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses. You must specify all three parameters in this object.

Sourcetype nonrec t = {
  1. cardNumber : int option;
    (*

    A number that uniquely identifies the SDI card on the node hardware. For information about how physical cards are identified on your node hardware, see the documentation for your node hardware. The numbering always starts at 1.

    *)
  2. channelNumber : int option;
    (*

    A number that uniquely identifies a port on the card. This must be an SDI port (not a timecode port, for example). For information about how ports are identified on physical cards, see the documentation for your node hardware.

    *)
  3. sdiSource : string option;
    (*

    The ID of a SDI source streaming on the given SDI capture card port.

    *)
}
Sourceval make : ?cardNumber:??? -> ?channelNumber:??? -> ?sdiSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t