Current section
Files
Jump to
Current section
Files
lib/ex_stream_client/model/file_upload_response.ex
defmodule ExStreamClient.Model.FileUploadResponse do
@moduledoc "Schema representing a FileUploadResponse"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
@enforce_keys [:duration]
defstruct [:duration, :file, :thumb_url]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{
duration: String.t(),
file: String.t() | nil,
thumb_url: String.t() | nil
}
end