Current section
Files
Jump to
Current section
Files
lib/ex_stream_client/model/rtmp_location.ex
defmodule ExStreamClient.Model.RTMPLocation do
@moduledoc "Schema representing a RTMPLocation"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
@enforce_keys [:name, :stream_key, :stream_url]
defstruct [:name, :stream_key, :stream_url]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{name: String.t(), stream_key: String.t(), stream_url: String.t()}
end