github.com/muxinc/mux-go@v1.1.1/model_create_simulcast_target_request.go (about)

     1  // Mux Go - Copyright 2019 Mux Inc.
     2  // NOTE: This file is auto generated. Do not edit this file manually.
     3  
     4  package muxgo
     5  
     6  type CreateSimulcastTargetRequest struct {
     7  	// Arbitrary metadata set by you when creating a simulcast target.
     8  	Passthrough string `json:"passthrough,omitempty"`
     9  	// Stream Key represents a stream identifier on the third party live streaming service to send the parent live stream to.
    10  	StreamKey string `json:"stream_key,omitempty"`
    11  	// RTMP hostname including application name for the third party live streaming service. Example: 'rtmp://live.example.com/app'.
    12  	Url string `json:"url"`
    13  }