Brand lookups — fetch a brand's canonical name/logo by id.
Summary
Functions
@spec fetch(Triple.Config.t(), String.t()) :: {:ok, Triple.Types.Brand.t()} | {:error, Triple.Error.t()}
Fetches a brand by its UUID.
Examples
Triple.Brands.fetch(client, "497f6eca-6276-4993-bfeb-53cbbbba6f08")
#=> {:ok, %Triple.Types.Brand{name: "Amazon", ...}}
@spec fetch!(Triple.Config.t(), String.t()) :: Triple.Types.Brand.t()
Same as fetch/2, but raises instead of returning {:error, _}.