Current section
Files
Jump to
Current section
Files
lib/ex_stream_client/model/thumbnails_settings_response.ex
defmodule ExStreamClient.Model.ThumbnailsSettingsResponse do
@moduledoc "Schema representing a ThumbnailsSettingsResponse"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
@enforce_keys [:enabled]
defstruct [:enabled]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{enabled: boolean()}
end